C Programming Fundamentals

Casual Mode - Take your time!

1 / 14
Correct
0
Incorrect
0
Score
0%
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
Change Mode