Skip to content
Snippets Groups Projects
Select Git revision
  • b6d36749a325e6a75a1ee83cf45a322f7eee7431
  • master default
  • i18n
3 results

hello.c

Blame
  • hello.c 127 B
    #include <stdio.h>
    #include <stdlib.h>
    
    int main(int argc, char **argv)
    {
    	printf("Hello World!!!!\n");
    	exit(EXIT_SUCCESS);
    }