7 lines
79 B
C
7 lines
79 B
C
|
#include <stdio.h>
|
||
|
|
||
|
main()
|
||
|
{
|
||
|
printf("EOFing is 1: %d\n", getchar() != EOF);
|
||
|
}
|