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

:)
:(
hihi
:-)
:D
=D
:-d
;(
;-(
@-)
:o
:>)
(o)
:p
:-?
(p)
:-s
8-)
:-t
:-b
b-(
(y)
x-)
(h)