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


Please Help Members By Posting Answers For Below Questions

a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

663


What is typedef struct in c?

592


Are comments included during the compilation stage and placed in the EXE file as well?

674


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2010


What is malloc return c?

603






Explain how can I right-justify a string?

629


Here is a good puzzle: how do you write a program which produces its own source code as output?

602


What are loops in c?

555


What is difference between main and void main?

633


write a progrmm in c language take user interface generate table using for loop?

1576


What does a function declared as pascal do differently?

609


How can you determine the maximum value that a numeric variable can hold?

643


What is difference between Structure and Unions?

644


What is scanf () in c?

668


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

724