MIPI_AdvancedC_FRTK/Lect1/06_page_10.c

11 lines
149 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
int main(void)
{
int32_t x = 17;
(x & 1) ? printf("Odd") : printf("Even");
}