Answer to Question #108989 in C for Anupam Khanra

Question #108989

1).

void main( )
{
int x=7, y=5;
x = y++ + x++ ;
y = ++y + ++x;
printf(“%d %d”, x , y);
}

2).

main() { 
 int z, x=5, y=-10, a=4, b=2;
 z = x ++ - --y * b / a;
 printf(“%d %d %d”, x, y, z);
}

3).

int main ( )
{
int i = 7;
for(i-- ;i-- ;i--)
printf(“%d”, i);
return 0;
}
1
Expert's answer
2020-04-12T13:44:00-0400

1). 13 20

2). 6 -11 10

3). 531


Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS