What will be output of the following “c” code?

		
					

Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include
int main(){
int i=3,val;
val=sizeof (f(i)+ +f(i=1)+ +f(i-1));
printf("%d %d",val,i);
return 0;
}
int f(int num){
return num*5;
}

A. 44594
B. 44623
C. 44622
D. 15 0