Q. What is the output of this program?
Code:
void main()
{
printf("%x",-1<<4);
}
β
Correct Answer: (A)
fff0
void main()
{
printf("%x",-1<<4);
}
You must be Logged in to update hint/solution