MIPI_BaseC_WebinarFRTK/04_Lecture04/10_bit operations_p29.c

11 lines
160 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
#include <inttypes.h>
int main()
{
unsigned int a=0xAABBCCFF;
a = a & ~7;//1111 1000
printf("a = %x", a);
// a = aabbccf8
}