MIPI_BaseC_WebinarFRTK/04_Lecture04/10_bit operations_p29.c
2024-11-13 09:22:28 +03:00

11 lines
160 B
C

#include <stdio.h>
#include <inttypes.h>
int main()
{
unsigned int a=0xAABBCCFF;
a = a & ~7;//1111 1000
printf("a = %x", a);
// a = aabbccf8
}