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

#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