2019-05-03 20:22:35 +02:00

9 lines
104 B
C

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