MIPI_BaseC_WebinarFRTK/04_Lecture04/01_compare_p7.c
2024-11-13 09:22:28 +03:00

12 lines
169 B
C

#include <stdio.h>
#include <inttypes.h>
int main()
{
int a, b;
a = 5 == 3; // a=0 - ëîæü
b = 100 >= 1; // b=1
printf("a=%d b=%d",a,b);
return 0;
}