Chapter 1, exercises 1.1, 1.2, and the beginning of 1.3

This commit is contained in:
Mitch Chisholm 2026-04-22 12:48:07 -06:00
parent 5524ab82a4
commit f69b32679a
8 changed files with 64 additions and 0 deletions

BIN
1-1/hello Executable file

Binary file not shown.

7
1-1/hello.c Normal file
View file

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

BIN
1-1/hello1-2 Executable file

Binary file not shown.

7
1-1/hello1-2.c Normal file
View file

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