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 a macro, and explain how do you use it?
How will you write a code for accessing the length of an array without assigning it to another variable?
Explain can static variables be declared in a header file?
How is a null pointer different from a dangling pointer?
What is the significance of scope resolution operator?
What is a program flowchart and how does it help in writing a program?
What are runtime error?
What is function prototype in c with example?
List some of the dynamic data structures in C?
Explain zero based addressing.
How do you use a 'Local Block'?
Explain setjmp()?
How many identifiers are there in c?
What is the total generic pointer type?
What is getch c?