What is While Loop in C Language with example ?
While loop evaluates the conditions inside the brackets. If the condition returns true, the statements inside the while loop...
main () {int x=20, y=35; x = y++ + x++; y = ++y + ++x; printf (“%d %d\n”, x, y);} ?
Answer : While calculating the y value, x & y values are preincremtned, so x & y values are incremented...