Programe to print the value of EOF

4/20/2013 01:44:00 am Unknown 0 Comments

#include <stdio.h>

#include <conio.h>
main()
{
      printf("%d", EOF);
      getch();  
}