A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Define a Macro to set Nth bit to Zero in C
Q:

Define a Macro to set Nth bit to Zero in C

0

Define a Macro to set Nth bit to Zero in C

Macro definition:

 #define SETPIN(PIN,N) (PIN &= ~(1<<N))

Here,

  • SETPIN is the Macro name
  • PIN is the value whose bit to set to zero
  • N is the bit number

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Example:

#include <stdio.h>

#define SETPIN(PIN,N) (PIN &= ~(1<<N))

int main(){
	
	unsigned char val = 0xFF;
	unsigned char bit = 2;
	
	printf("val = %X\n",val);
	
	//SET bit number 2 to zero 
	SETPIN(val,bit);
	printf("Aftre setting  bit %d to zero, val = %X\n", bit, val);
	
	return 0;	
}

Output

    val = FF
    Aftre setting  bit 2 to zero, val = FB

Explanation:

  • In this example, initially the value of val is 0xFF that is "1111 1111" in binary.
  • To set bit number 2 (i.e. third bit) to zero, when we call macro SETPIN(val, bit), the bit number 2 will set to 0. Thus, the output will be "1111 1011" i.e. 0xFB in Hexadecimal.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now