Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

COPYING

Blame
  • This project is licensed under the Creative Commons Attribution Share Alike 4.0 International. Learn more
    hello.c 127 B
    #include <stdio.h>
    #include <stdlib.h>
    
    int main(int argc, char **argv)
    {
    	printf("Hello World!!!!\n");
    	exit(EXIT_SUCCESS);
    }