summaryrefslogtreecommitdiff
path: root/ch01/ex06-eof.c
blob: bd8fae50fe2d568f74ca37e78d6bc42be264a4e0 (plain)
1
2
3
4
5
6
#include <stdio.h>

int main()
{
	printf("%d\n", getchar() != EOF);
}