6 lines
76 B
C
Raw Normal View History

2022-12-14 17:02:15 +03:00
int main(void) {
volatile int x = 1, y = 0;
x /= y;
return 0;
}