C examples for Language Basics:Hello World
Use printf() function to output two lines of text
#include <stdio.h> int main (void) { printf ("tutorial from book 2s.c om.\n"); printf ("from book2s.com.\n"); return 0;//from w ww .jav a2 s . c om }