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
Explain the bubble sort algorithm.
What are called c variables?
How do you determine the length of a string value that was stored in a variable?
What is the symbol indicated the c-preprocessor?
Can we access array using pointer in c language?
can anyone please tell about the nested interrupts?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is difference between function overloading and operator overloading?
Simplify the program segment if X = B then C ← true else C ← false
What is the difference between #include
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
while initialization of array why we use a[][2] why not a[2][]...?
How can I direct output to the printer?