📚 Practice Mode

C Programming Fundamentals

Learn at your own pace with hints and detailed explanations

1 / 14
Multiple Choice

Determine Output: main(){ unsigned int y = 12; int x = -2; if(x>y) printf(" x is greater"); else printf (" y is greater"); return 0;}

  1. x is greater
  2. y is greater
  3. compile error
  4. none