Tag: modulo

14
May
2017

DCP-4: Great!!! The Work Is Done Solution

code i tried  around 5 of hours but didn’t succeded: #include<stdio.h> #include<math.h> int main() { int t,n,i,result,p,sum=0;…

11
May
2017

Modulo in Details

We can easuly get a range of output value after mod: Code: for 100 here print from…

09
May
2017

Learn Modulo in Easy Way

One thing was confusion for me but after watching this tut it is clear to me now….

05
Apr
2017

Find sum of digits of a given number in C

Code: With While Loop #include<stdio.h> int main() { int N,r,sum; sum=0; printf(“Give a number:”); scanf(“%d”,&N); while(N!=0) {…

19
Jan
2015

মডুলাস অপারেটর নিয়ে কিছু কথা

ইদানিং প্রব্লেম সল্ভ করতে গিয়ে কিছু প্রব্লেম এ পড়লে দেখছি যে মডুলাস এর ধারনা টা নিজের কাছে…