Category: A ll Codes

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

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

11
May
2017

Another Approach To Find the Length Of String

code: #include<stdio.h> #include<string.h> int main() { int i; char str[80]; printf(“Enter a string:”); scanf(“%[^\n]”,str); //for(i=0; str[i]!=’\0′; i++);…

11
May
2017

String Secret Revealed in C

String Input Take Without any gets function just scanf is enough for taking any input withlout gets function #include<stdio.h>…