
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Yesterday, 01:07 PM
I'm not able to understand because test is not shown.
printf("test");
while (1);
while in this code Test is shown:
...
2 replies | 68 view(s)
-
Today, 03:52 AM
\n outputs a new line without flushing the buffer.
printf("test\n");
is the same as:
puts("test");
2 replies | 68 view(s)
-
Yesterday, 02:28 PM
Because "\n" causes an automatic
fflush(stdout);
when the output is in line buffered mode (which is the default when using an interactive console)....
2 replies | 68 view(s)
|
Click Here to Expand Forum to Full Width
|