0 votes
1
Consider the following statements,Int i=4, j=3, k=0; k=++i - j + i++ -j +j++;What will be the values of $i, j $ and $k$ after the statement.$7,2,8$$5,2,10$$6,2,8$$4,2,8$...
1 votes
3
Find the output of the following $“C”$ code :Main() { int x=20, y=35; x=y++ + x++; y=++y + ++x; printf (“%d, %d\n”, x, y); }$55, 93$$53, 97$$56, 95$$57, 94$