Initial commit for KNR C exercises

This commit is contained in:
Reina Harrington-Affine 2025-07-29 13:06:28 -07:00
commit 67483eaceb
4 changed files with 32 additions and 0 deletions

7
KNR C/hello_world.c Normal file
View file

@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("hello, world\n");
return 0;
}