A Simple C program : Printing a line of text

#include<stdio.h>                  //Header file <stdio.h> is use for standard input output.
#include<conio.h>                //Header file <conio.h> is user for printing our output on console screen.
int main()
{
printf("Welcome to SmartProgrammerOn.blogspot.in");  //printf keyword is use to print strings on console                                                                                           //screen
getch();
}

Popular posts from this blog

Shutdown Pc

Ellipse using OpenGl

Program to plot Quadrant strip