Question: nt fun ( int * k ) { * k + = 2 0 ; return 2 * ( * k ) - 1 0

nt fun(int *k){
*k +=20;
return 2*(*k)-10 ;
}
void main(){
int i=10, sum;
sum=(i/2)+ fun(&i);
}
What is the values of sum?
a. operands are evaluated left to right.
b. operands are evaluated right to left.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!