IDNStudy.com, kung saan ang iyong mga tanong ay may mabilis na sagot. Tuklasin ang malalim na sagot sa iyong mga tanong mula sa aming komunidad ng mga bihasang propesyonal.

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);