summaryrefslogtreecommitdiff
path: root/elf/hello.c
blob: 0aa057ef6a1be7e965908f5e839f1f1228d0ad96 (plain)
1
2
3
4
5
6
#include <stdio.h>
void main(void)
{
    char * hello="Hello World !\n";
    printf (hello);
}