commit 64aae33d89f7c51c281f4e369fdaf91d2221cce1 parent 065837c510391b229f0be3a04c63dd26c791e8c7 Author: klewer-martin <martin.cachari@gmail.com> Date: Sat, 6 Mar 2021 17:17:30 -0300 Update; Diffstat:
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