Simple c program to print messege.

To print any message on screen in C programming we use printf function. where message write in between double quote(" ") and printf() function terminated by ; (semi column). In printf() function \n put cursor at the beginning of next line and \t is use for the tab functionality which leave 8 space between to strings.

For Example:
                        printf("Hello programming campus");

Source Code To Display Simple message


#include<stdio.h>
void main()
{
printf("Hello veducator.blogspot.com");

                getch();

}


simple c program to print messege
Download


0 comments:

Post a Comment