Category: Language

12
May
2017

Find Is It Armstrong Number or Not

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) {…

12
May
2017

Modular Reusable Code Example in Function

Program to check if it is upper or lowercase if it is then print it or if…

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…

12
May
2017

Create Your Own Header Library to use In C program

Understand the basics will learn it later on. Vid:

12
May
2017

strcmp() explained perfectly

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