/*use sleep*/ #include /*use printf*/ #include int main() { /*declaration*/ int cx; int port = 5432; char * user = "begerad"; char * secret = "secret"; char * host = "localhost"; char * db = "vbn_data"; /*TODO How is const defined?*/ const int pqConInfoSize = 100; char pqConInfo[pqConInfoSize]; printf("main() Started...\n"); cx = snprintf(pqConInfo,pqConInfoSize,"postgresql://%s:%s@%s:%d/%s",user,secret,host,port,db); if(cx>=0 && cx