C examples for Language Basics:Hello World
Prints a message on the screen
#include <stdio.h> int main()//w w w.j av a 2 s . c om { printf("this is a test"); printf(" programmers!\n"); return 0; }