diff options
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); +} |
