Answers for "c modulo"

C
3

c modulo

x % y
Posted by: Guest on March-20-2021
3

Mod in c++

if (iNum % 2 == 0) 
{
cout << num << " is even ";
}
// % is used to mod numbers
Posted by: Guest on October-06-2020

Code answers related to "C"

Browse Popular Code Answers by Language