i want to print "CLIENT>" on stdout in c, without new line.
printf("CLIENT>");
does not print enything.
how do i solve this?
int main (){
printf("CLIENT>");
}
|
|
|
Try You can also investigate |
|||||||||||
|
|
Call
|
|||
|
|
|
On some compilers/runtime libraries (usually the older ones) you have to call fflush to have the data physically written:
If the data has newline in the end, usually |
||||