sixth exercise

This commit is contained in:
celso 2022-11-05 17:51:37 -03:00
parent 34b2fa78c7
commit 5c7aa8ad46
1 changed files with 7 additions and 0 deletions

7
1-6.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
int main(){
int c;
c=(getchar() != EOF);
printf("%d", c);
return 0;
}