From 9e2397ed88e159ee66a6b7c7ce2203f1f715ff94 Mon Sep 17 00:00:00 2001 From: Peter Gerwinski <peter.gerwinski@hs-bochum.de> Date: Thu, 5 Nov 2020 15:37:44 +0100 Subject: [PATCH] Beispiel-Programme 5.11.2020 --- 20201105/hello-1.c | 7 +++++++ 20201105/hello-2.c | 7 +++++++ 20201105/hello-3.c | 7 +++++++ 20201105/hello-4.c | 7 +++++++ 4 files changed, 28 insertions(+) create mode 100644 20201105/hello-1.c create mode 100644 20201105/hello-2.c create mode 100644 20201105/hello-3.c create mode 100644 20201105/hello-4.c diff --git a/20201105/hello-1.c b/20201105/hello-1.c new file mode 100644 index 0000000..b19d80e --- /dev/null +++ b/20201105/hello-1.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main (void) +{ + printf ("Hello, world!\n"); + return 0; +} diff --git a/20201105/hello-2.c b/20201105/hello-2.c new file mode 100644 index 0000000..2dbbad9 --- /dev/null +++ b/20201105/hello-2.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main (void) +{ + printf ("Hello, world!"); + return 0; +} diff --git a/20201105/hello-3.c b/20201105/hello-3.c new file mode 100644 index 0000000..087b3ad --- /dev/null +++ b/20201105/hello-3.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main (void) +{ + printf (Hello, world!); + return 0; +} diff --git a/20201105/hello-4.c b/20201105/hello-4.c new file mode 100644 index 0000000..e27a989 --- /dev/null +++ b/20201105/hello-4.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main (void) +{ + "Hello, world!"; + return 0; +} -- GitLab