solutions/The C Programming Language/1.6.c

7 lines
79 B
C
Raw Normal View History

2024-04-16 19:13:00 -04:00
#include <stdio.h>
main()
{
printf("EOFing is 1: %d\n", getchar() != EOF);
}