I#include<stdio.h>
void display(int(*ff)());
void main()
{
int show();
int (*f)();
f = show;
display(f);
getch();
}
void display(int(*ff)())
{
(*ff)();
}
int show()
{
clrscr();
printf("india");
}
f U LIKE THE POST FOLLOW THE BLOG
void display(int(*ff)());
void main()
{
int show();
int (*f)();
f = show;
display(f);
getch();
}
void display(int(*ff)())
{
(*ff)();
}
int show()
{
clrscr();
printf("india");
}
f U LIKE THE POST FOLLOW THE BLOG
No comments:
Post a Comment