summaryrefslogtreecommitdiff
path: root/ch01/ex07-eof.c
diff options
context:
space:
mode:
Diffstat (limited to 'ch01/ex07-eof.c')
-rw-r--r--ch01/ex07-eof.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ch01/ex07-eof.c b/ch01/ex07-eof.c
new file mode 100644
index 0000000..f91bb75
--- /dev/null
+++ b/ch01/ex07-eof.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("%d\n", EOF);
+}