From d98f46ce647846b0aa30b2e16a30fd4e152a1bf5 Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Thu, 10 Jul 2025 22:55:07 +0200 Subject: Add new code Signed-off-by: Carlos Maiolino --- CSAPP/chap2/hello.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CSAPP/chap2/hello.c (limited to 'CSAPP/chap2/hello.c') diff --git a/CSAPP/chap2/hello.c b/CSAPP/chap2/hello.c new file mode 100644 index 0000000..2581101 --- /dev/null +++ b/CSAPP/chap2/hello.c @@ -0,0 +1,7 @@ +#include + +int main(void) +{ + printf("Hello world\n"); + return 0; +} -- cgit v1.2.3