hello world program

C
print("Hello World");#include <stdio.h>

int main ()
{
	printf ("Hello, World!\n");
    
    return 0;
}
Source

Also in C: