while ((c = accept()> 0){
// Do whatever a web server does.
printf("got connected\n");
recv_buf[i]='\0';
printf("%s\n" , recv_buf);
printf("input received");
}
this while loop receives the message and prints the message but did not print the line " input received", why is it like that and how do i fix it?