Makakuha ng eksaktong mga sagot sa iyong mga tanong sa IDNStudy.com. Ang aming komunidad ay nagbibigay ng eksaktong sagot upang matulungan kang maunawaan at malutas ang anumang problema.

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