#include <stdio.h>
//fun1
void fun1(void){
printf("Called function is: %s\n",__func__);
}
//fun2
void fun2(void){
printf("Called function is: %s\n",__func__);
}
//Main code
int main(){
printf("Called function is: %s\n",__func__);
//function callings
printf("Now,calling the functions...\n");
fun1();
fun2();
return 0;
}
Output
Called function is: main
Now,calling the functions...
Called function is: fun1
Called function is: fun2
Example:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer