summaryrefslogtreecommitdiff
path: root/elf/hello.c
diff options
context:
space:
mode:
authorjerome <jerome@xlinfo.fr>2023-11-13 01:34:03 +0100
committerjerome <jerome@xlinfo.fr>2023-11-13 01:34:03 +0100
commit696111049388b5a8f51b02e331b24c6650d4799e (patch)
tree38338bd33b598dcb2464bb44d151a37528dd7037 /elf/hello.c
downloadforensic-696111049388b5a8f51b02e331b24c6650d4799e.tar.gz
forensic-696111049388b5a8f51b02e331b24c6650d4799e.zip
commit initial
Diffstat (limited to 'elf/hello.c')
-rw-r--r--elf/hello.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/elf/hello.c b/elf/hello.c
new file mode 100644
index 0000000..0aa057e
--- /dev/null
+++ b/elf/hello.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+void main(void)
+{
+ char * hello="Hello World !\n";
+ printf (hello);
+}