Computer Science, asked by srikrishna9933, 9 months ago

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 Avni2348
5

Answer:

{

int x=5,y=15;

x= x++ + ++y;

y = ++x + ++y;

printf("%d %d",x,y);

return 0;

}

Answered by pawanmerijaan
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