Category: Algorithm

14
May
2017

Recursion in C

code: #include<stdio.h> void printNo(unsigned int n) { if(n==0) return; //it is outing from this function and going…

13
May
2017

Extract Digits From a Number and Make a Sum of all the digits and show this in C

Code is here: #include<stdio.h> int main() { int number; scanf(“%d”,&number); char digits[2000000]; int i=0,d; while(number>0) { d=number%10;…

12
May
2017

How to improve Algorithmic Thinking ?

https://www.quora.com/Im-not-good-with-algorithms-and-I-cant-figure-out-a-solution-until-someone-tells-me-How-can-I-fix-this

12
May
2017

Check The Number Is Prime Or Not in C, Easy and Details Explanation

Simple Logic For Finding Prime Number is primarility test is 2 to root of n..Source: Wikipedia The…

09
May
2017

Don’t be developer without coding knowledge in DS and Algo

Dear friends, I have close to 9 years of experience in the IT industry. I have been…

06
May
2017

What you learn try to learn from Fundamentals

Joginder Sharma, works at Android Application Development Answered Apr 4, 2015 Whatever you choose just stick with…