MIPI_BaseC_WebinarFRTK/04_Lecture04/09_shift_features_p27.c

10 lines
138 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
#include <inttypes.h>
int main()
{
int a=1,b=-1;
printf("a = %d b = %d", a>>32, b>>-1);
// a = 0 b = -1
}