Sumali sa IDNStudy.com at makuha ang mabilis at kaugnay na mga sagot. Tuklasin ang mga kumpletong sagot sa iyong mga tanong mula sa aming komunidad ng mga eksperto.

how to define a remainder using programming?



Sagot :

you can use % operator to get the remainder...
Ex.you have a number 39/11 in order to get the remainder do it like this.
int num1=39,int num2 = 11;
remainder = num1%num2;
printf("Remainder:" remainder);