Month: May 2017
As I am learning I didn’t find the solution yet when I was trying to make a…
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;…
code by me: #include<stdio.h> #include<math.h> int getTotalDigits(int); int isArmStrong(int,int); int getTotalDigits(int n) { int count=0; while(n>0) {…
Program to check if it is upper or lowercase if it is then print it or if…
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
Simple Logic For Finding Prime Number is primarility test is 2 to root of n..Source: Wikipedia The…
Recent Comments