Working with Two Function

Wednesday, 7 September 2011

#include<stdio.h>
#include<conio.h>
void main()
{
void show();
void disp();
clrscr();
printf("In main");
show();
disp();
printf("\nBack in main");
getch();
}


void show()
{
printf("\nIn show function");
}


void disp()
{
printf("\nIn disp function");
}




OUTPUT:


In main
In show function
In disp function
Back in main





No comments:

Post a Comment

 

Blogger news

Blogroll

Enter your email address:

Delivered by FeedBurner

Total Pageviews

Followers

Most Reading