From 9ed37960145f30e8e3ad0835f08e8bea2ad79e4b Mon Sep 17 00:00:00 2001 From: Reina Harrington-Affine Date: Wed, 13 Aug 2025 05:44:14 +0000 Subject: [PATCH] Changed 'c' to 'a' while working on other, later abaondoned changes. --- KNR C/ex1_7-printeof.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 KNR C/ex1_7-printeof.c diff --git a/KNR C/ex1_7-printeof.c b/KNR C/ex1_7-printeof.c new file mode 100644 index 0000000..dc518ac --- /dev/null +++ b/KNR C/ex1_7-printeof.c @@ -0,0 +1,9 @@ +#include + +int main(){ + + int c = EOF; + printf ("%d", c); + +return 1; +}