Find the output for the following C programmain(){int x=10;x++;change_value(x);x++;Modify_value();printf("First output: %dn",x);}x++;change_value(x);printf("Second Output : %dn",x);Modify_value(x);printf("Third Output : %dn",x);}Modify_value(){return (x+=10);}change_value(){return(x+=1);}

12; 1; 1

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions