summaryrefslogtreecommitdiff
path: root/CSAPP/chap2/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'CSAPP/chap2/hello.c')
-rw-r--r--CSAPP/chap2/hello.c7
1 files changed, 7 insertions, 0 deletions
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 <stdio.h>
+
+int main(void)
+{
+ printf("Hello world\n");
+ return 0;
+}