12 lines
169 B
C
12 lines
169 B
C
|
#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;
|
|||
|
}
|