c_exercises/1-7.c

6 lines
68 B
C
Raw Normal View History

2022-11-05 17:51:47 -03:00
#include <stdio.h>
int main(){
printf("%d\n", EOF);
return 0;
}