Find - 50 mod 7
#include <stdio.h>
int main()
{
int rem;// variable rem to store mod of 50 and 7
int N = 50;
int M = 7;
rem = N % M; // % is modulo operator.
printf("mod of 50 and 7 is : %d",rem);
return 0;
}
Get Answers For Free
Most questions answered within 1 hours.