how to define mod value in c++ 10e9+ code example
Example: Mod in c++
if (iNum % 2 == 0)
{
cout << num << " is even ";
}
// % is used to mod numbers
if (iNum % 2 == 0)
{
cout << num << " is even ";
}
// % is used to mod numbers