From 5034ae15704b650be100b824e83b1361a573940b Mon Sep 17 00:00:00 2001 From: Lucas de Castro Borges Date: Mon, 27 May 2024 08:46:36 -0300 Subject: First example First hello world example --- chapter01/hello1.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 chapter01/hello1.c diff --git a/chapter01/hello1.c b/chapter01/hello1.c new file mode 100644 index 0000000..cf2c2fc --- /dev/null +++ b/chapter01/hello1.c @@ -0,0 +1,8 @@ +#include + +int main() +{ + printf( "Hello, world!\n"); + return 0; + +} -- cgit v1.2.3