Tuesday, August 16, 2011

Exercise 1-7

Exercise 1-7  Write a program to print the value of EOF.

#include <stdio.h>

int main(void)
{
  printf ("The value of EOF is %d\n", EOF);
  return 0;
}

No comments:

Post a Comment