C++ details about division /, modulo % Posted on 2019-07-14 | In C++ | Words count in article 63 12cout << (-23) / 10 << endl; -2 12cout << (-23) % 10 << endl; -3 123cout << (-23) / (-10) << endl; Out: 2 123cout << (-23) % (-10) << endl; Out: -3