how to print in c

C
          int printf(const char *format, ...);
// Header file for input output functions
#include <stdio.h>

// main function - where execution of the program begins
int main() {
    // prints hello world
    printf("Hello World");
    return 0;
}
//To compile & Execute:
	//$ gcc HelloWorld.c
	//$ ./a.out
//Check source for more details
Source

Also in C: