find value of the variable with the help is the prefix and postfix if y= 14 ,then find z = (++ y*(++ y+6))
Answers
Answered by
5
Answer:
{
int x=5,y=15;
x= x++ + ++y;
y = ++x + ++y;
printf("%d %d",x,y);
return 0;
}
Answered by
0
Answer:
prefix and postfix if y= 14 ,then find z = (++ y*(++ y+6)).
Answer:{ int x=5,y=15; x= x++ + ++y; y = ++x + ++y; printf("%d %d",x,y); return 0;}
Similar questions