The C Programming Language

Hello world! Example Program


/* Hello World program */

#include<stdio.h>

main()
{
    printf("Hello World");

}

[Back] [Home]