Write program to output 'Hello World' to console window
Use printf() function;
Hard code the text as string.
#include <stdio.h> int main() // w w w. jav a 2 s. com { printf("Hello world!\n"); return(0); }