diff --git a/divzero.cpp b/divzero.cpp new file mode 100644 index 0000000..634cf7b --- /dev/null +++ b/divzero.cpp @@ -0,0 +1,8 @@ +//div by zerooo + +int main() { + int x = 0; + int y = 20; + int z = y/x; + return 0; +}