Project-Scylla/KNR C/ex1_7-printeof.c

10 lines
79 B
C
Raw Normal View History

#include <stdio.h>
int main(){
int c = EOF;
printf ("%d", c);
return 1;
}