2019-05-23 14:31:55 +02:00

9 lines
110 B
C

#include <stdio.h>
int main() {
(void)printf("Hello world!\n");
x = 3 / 0; // ERROR
return 0;
}