#include int main(int argc, char** argv) { float a = 5.0; int b = 0; float res = a / b; std::cout << "res: " << res << std::endl; return 0; }