aboutsummaryrefslogtreecommitdiff
path: root/1/7.c
blob: b941b6d0553eadf8549084059f68ed9544763c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
	Exercise 1-7. Write a program to print the value of EOF.
	===

	The program printed -1, the value of EOF.
*/

#include <stdio.h>

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