6 lines
76 B
C
Raw Permalink Normal View History

int main(void) {
volatile int x = 1, y = 0;
x /= y;
2023-01-31 15:28:29 +04:00
return x;
}