MCQ Practice
Single Best Answer
Topic: Operators and Enums in C Language
Q
If an unsigned int is 2 bytes wide then, What will be the output of the program?
#include
int main()
{
unsigned int a=0xffff;
~a;
printf("%x\n", a);
return 0;
}
Subchapter
Operators and Enums in C Language
Action
Choose one option below