Tuesday, August 20, 2019

Function called any number of times.

Function called any number of times:

Function called any number of times


#include<stdio.h>
#include<conio.h>
void msg();
void main()
{
clrscr();
msg();  //function call
msg();  //function call
getch();
}
void msg()
{
printf("\nCan't Imagine Without C");
}

Output:



EmoticonEmoticon