2023-01-31 13:17:22 +04:00

6 lines
76 B
C

int main(void) {
volatile int x = 1, y = 0;
x /= y;
return 0;
}