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

11 lines
196 B
C

#include <stdio.h>
#include <inttypes.h>
int main()
{
int a, b=5, n=0;
a = ( n!=0 && b/n ); // Нет ошибки - деления на ноль
printf("%d %d",a,b);
return 0;
}