what is output of the following statetment?Printf(“%x”,
-1<<4); ?
Answer Posted / arupananda
Question is -1<<4
Answer to 16bit compiler
As -1 is a negative number,so compiler first convert this number with removing negative sign to 2's complement
Here -1 is given
so compiler first removes the -ve sign and then convert to 2's complement
Binary form of 1 for 16 bit compiler is 0000 0000 0000 0001
1's complement of 1 is 1111 1111 1111 1110
2's complement of 1 is 1111 1111 1111 1111(1+1's complement)
now do the left shift operation
1111 1111 1111 1111 << 4
which results 1111 1111 1111 0000
i.e equivalent to FFF0 in hex format
So the answer is FFF0 for 16 bit compiler
And for 32 bit compiler it is FFFF FFF0 (do same operation as 16 bit compiler)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why can’t we compare structures?
When can you use a pointer with a function?
Explain what are compound statements?
What header files do I need in order to define the standard library functions I use?
What is d scanf?
What is scanf_s in c?
Why doesnt long int work?
shorting algorithmS
can anyone suggest some site name..where i can get some good data structure puzzles???
How can you determine the size of an allocated portion of memory?
What is the use of parallelize in spark?
What is the return type of sizeof?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
code for quick sort?
What is atoi and atof in c?