MIPI_BaseC_WebinarFRTK/04_Lecture04/01_compare_p7.c

12 lines
169 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, b;
a = 5 == 3; // a=0 - <20><><EFBFBD><EFBFBD>
b = 100 >= 1; // b=1
printf("a=%d b=%d",a,b);
return 0;
}