How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Answer Posted / raj
n&0x11111110
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Explain what happens if you free a pointer twice?
what are bit fields in c?
Who is the founder of c language?
How can I list all of the predefined identifiers?
What is build process in c?
What is the difference between Printf(..) and sprint(...) ?
Are there namespaces in c?
Are there any problems with performing mathematical operations on different variable types?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What does 4d mean in c?
please send me the code for multiplying sparse matrix using c
Explain bitwise shift operators?
what is the difference between class and unio?
Explain void pointer?