Answer Posted / c.p.senthil
Agree with answer 2.
~ is used to find the 1's complement of any number
ex:
a = 0xCA (in hex) => 11001010 (in binary)
~a = 0x35 (in hex) => 00110101 (in binary)
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is main return c?
What is const volatile variable in c?
Write a program to show the change in position of a cursor using c
Differentiate between new and malloc(), delete and free() ?
Why c is procedure oriented?
Explain the use of 'auto' keyword
What is the right way to use errno?
How can a process change an environment variable in its caller?
What is the difference between declaring a variable and defining a variable?
What is dynamic dispatch in c++?
What does c value mean?
Differentiate Source Codes from Object Codes
Did c have any year 2000 problems?
What is the use of bitwise operator?
Explain enumerated types in c language?