Here is a c function program. It looks to take void msg() function void main() function. how is the void msg() function used two times.
#include<stdio.h>
#include<conio.h>
void msg();
void main()
{
printf("Hello All\n");
msg();
}
void msg()
{
printf("\n TheCrazyProgrammer");
getch();
return 0;
}