Use printf() function to output two lines of text - C Language Basics

C examples for Language Basics:Hello World

Description

Use printf() function to output two lines of text

Demo Code

#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
}

Related Tutorials