Changed name of dumbtest.c to ex1_7.c to reflect what exercise was completed in this code.

This commit is contained in:
Reina Harrington-Affine 2025-08-13 05:46:40 +00:00
parent 9ed3796014
commit a36892d8be

9
KNR C/ex1_7.c Normal file
View file

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