📚 Practice Mode

General Knowledge Trivia Mix

Learn at your own pace with hints and detailed explanations

1 / 20
Multiple Choice

What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf(“%d%dn”,x,y); }

  1. 57,94
  2. 56,55
  3. 47,59
  4. 56,92