Changed 'c' to 'a' while working on other, later abaondoned changes.

This commit is contained in:
Reina Harrington-Affine 2025-08-13 05:44:14 +00:00
parent 191b35631c
commit 9ed3796014

9
KNR C/ex1_7-printeof.c Normal file
View file

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