📚 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;}
- x is greater
- y is greater
- compile error
- none