17 lines
184 B
C
17 lines
184 B
C
#include "printlib.h"
|
|
|
|
int main(){
|
|
float x,y,z;
|
|
|
|
x = 42.0;
|
|
y = 0.0;
|
|
z = x%y;
|
|
println_float(z);
|
|
|
|
return 0;
|
|
}
|
|
|
|
// EXPECTED
|
|
// EXITCODE 1
|
|
// Division by 0
|