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

9 lines
79 B
C

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