Category: Language
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…
Understand the basics will learn it later on. Vid:
code: #include<stdio.h> #include<string.h> int main() { char first[90]=”abc”; char second[80]=”cat”; int i; i=strcmp(first,second); if(i==0) printf(“Both are equal\n”);…
Recent Comments