c-first-steps

a C playground
Index Commits Files Refs README
commit 64aae33d89f7c51c281f4e369fdaf91d2221cce1
parent 065837c510391b229f0be3a04c63dd26c791e8c7
Author: klewer-martin <martin.cachari@gmail.com>
Date:   Sat,  6 Mar 2021 17:17:30 -0300

Update;

Diffstat:
Rthe-c-programming-language/chapter01/ex1-1.c -> the-c-programming-language/chapter01/ex01.c | 0
Athe-c-programming-language/chapter01/ex02.c | 10++++++++++
Rthe-c-programming-language/chapter01/ex1-8.c -> the-c-programming-language/chapter01/ex08.c | 0
Rthe-c-programming-language/chapter01/ex1-9.c -> the-c-programming-language/chapter01/ex09.c | 0
4 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/the-c-programming-language/chapter01/ex1-1.c b/the-c-programming-language/chapter01/ex01.c
diff --git a/the-c-programming-language/chapter01/ex02.c b/the-c-programming-language/chapter01/ex02.c
@@ -0,0 +1,10 @@
+//    Exercise 1-2, Experiment with \c in printf.
+
+#include <stdio.h>
+
+int main( void ) {
+
+    printf("Hello, world\n");
+
+    return 0;
+}
diff --git a/the-c-programming-language/chapter01/ex1-8.c b/the-c-programming-language/chapter01/ex08.c
diff --git a/the-c-programming-language/chapter01/ex1-9.c b/the-c-programming-language/chapter01/ex09.c