#include<stdio.h>
main()
{
void
mess();
void
(*ptr)();
ptr=mess;
clrscr();
printf("Address
of the function is %d\n",ptr);
(*ptr)();
}
void
mess()
{
printf("I
am in the subprogram\n");
}
No comments:
Post a Comment