What would be the output of the following program ?
main()
{
unsigned int a = oxffff;
~a;
printf ("%x", a);
}5
845 5b5cc7dde4d2b419777515c6
Q: What would be the output of the following program ? main() { unsigned int a = oxffff; ~a; printf ("%x", a); }
- 1fffftrue
- 20000false
- 300fffalse
- 4None of the abovefalse
- Show Answer
- Workspace
- Discuss