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

hello.c

Blame
  • hello.c 250 B
    #include <stdio.h>
    #include <stdlib.h>
    
    int main(int argc, char **argv)
    {
    	printf("Howdy World!!!!\n");
    	printf("Sehr geehrte Damen und Herren Erdenbuerger, seien Sie hiermit herzlich gegruesst!\n");
    	printf("(c)2013 ACME\n");
    	exit(EXIT_SUCCESS);
    }