C examples for Language Basics:Hello World
Display constant string text with printf
#include <stdio.h> int main(void) { printf("test.\n"); /* w ww . j a v a 2 s .c o m*/ return 0; }