1. Solve the questions for the following c code, #include v…
1. Solve the questions for the following c code, #include void fun1(int x, int *y){ x = x * (*y); *y = 3 * (*y); } int main(){ int x = 3, y =7 ; fun1(x, y); if(x==y){ printf(“x=y=%d”, x); }else{ printf(“%d\t%d\n”, x, y); } return (0);} b) What will be printed when the corrected program is compiled and executed? and why?
Read Details