Walk Lightly on this PLANET and yet leave such a FOOTPRINT that cannot be erased for thousands of Years..!!!
Visit Codstech for Cyber Security related Posts !

Visitors

Saturday, February 19, 2011

C28 : Display a string(Using user defined functions)

Back to Home   &  C


//Program to display a string using user defined functions.


#include<stdio.h>
#include<conio.h>
display();
void main()
{
clrscr();
getch();
}
int display()
{
printf("Welcome");
return(0);
}
---------------------------------------------------------
Output
Welcome
===============================================
Back to Home   &  C

No comments: