What would be the output of the following program ?
main()
{
unsigned int a = oxffff;
~a;
printf ("%x", a);
}
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
Be The First To Comment