12 lines
287 B
C
12 lines
287 B
C
|
#include <stdio.h>
|
||
|
#include <stdint.h>
|
||
|
#include <inttypes.h>
|
||
|
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int32_t x = 3, y = 8;//0b0011 = 3, 0b1000 = 8
|
||
|
(x & y) ? printf("True ") : printf("False ");//0b0011 & 0b1000 = 0b0000
|
||
|
(x && y) ? printf("True ") : printf("False ");//0b0011 && 0b1000 = 0b0001
|
||
|
}
|