#include<stdio.h>
#include<conio.h>
void main()
{
void display();
clrscr();
printf("main function");
getch();
}
void display()
{
printf("user function");
}
the output of the above program is
main function
but I want the display()
function to be executed before the main function.
the output should be:
user function main function