khalfella

c_ch01_ex07.c

Sep 20th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. /*
  2. * Exercise 1-7. Write a program to print the value of EOF.
  3. */
  4.  
  5. #include <stdio.h>
  6.  
  7. main() {
  8. printf("EOF = %d\n", EOF);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment