diff options
| author | jerome <jerome@xlinfo.fr> | 2023-11-13 01:34:03 +0100 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2023-11-13 01:34:03 +0100 |
| commit | 696111049388b5a8f51b02e331b24c6650d4799e (patch) | |
| tree | 38338bd33b598dcb2464bb44d151a37528dd7037 /elf/hello.c | |
| download | forensic-696111049388b5a8f51b02e331b24c6650d4799e.tar.gz forensic-696111049388b5a8f51b02e331b24c6650d4799e.zip | |
commit initial
Diffstat (limited to 'elf/hello.c')
| -rw-r--r-- | elf/hello.c | 6 |
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); +} |
