PRINTING ASCII VALUE USING C PROGRAM

PRINTING ASCII VALUE USING C PROGRAM Solution: #include<stdio.h> void main(){   int i;   for(i=0;i<=255;i++){      ...

MULTIPLICATION OF TWO MATRICES USING C PROGRAM

MULTIPLICATION OF TWO MATRICES USING C PROGRAM Solution: #include<stdio.h> int main(){   int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p;  ...

Factorial of 100 in C Program

Factorial of 100 in C Program Solution: #include<stdio.h> #define MAX 10000 void factorialof(int); void multiply(int); int length = 0; int...

Multiplication of large numbers in c

Multiplication Of Large Numbers In C Solution: #include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h> #define...

Division of Large Numbers in C Program

Division of Large Numbers in C Program Solution: #include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h> #define...

BINARY SEARCH USING C PROGRAM

BINARY SEARCH USING C PROGRAM Solution: #include<stdio.h> int main(){   int a[10],i,n,m,c=0,l,u,mid;   printf("Enter the size of an...

REVERSE A NUMBER USING RECURSION IN C PROGRAM

REVERSE A NUMBER USING RECURSION IN C PROGRAM Solution : #include<stdio.h> int main(){ int num,rev; printf("\nEnter a number :"); scanf("%d",&num); rev=reverse(num); printf("\nAfter...

Write A C Program For Swapping Of Two Arrays

Write a c program for swapping of two arrays Solution : #include<stdio.h> int main(){   int a[10],b[10],c[10],i;   printf("Enter First...

SWAPPING OF STRINGS USING C PROGRAM

SWAPPING OF STRINGS USING C PROGRAM Solution: #include<stdio.h> int main(){   int i=0,j=0,k=0;   char str1[20],str2[20],temp[20];  ...

C or C++ Program To Find Bonus Amount

The company has the following bonus policy for the fiscal year: The bonus provided will be 5% if the total sale is less than 1, 00,000 and if the sale...

C Programme To Multiply Two Matrixes

How To Write a C Programme To Multiply Two Matrixes in C Programming Language ? Solution For C Programme To Multiply Two Matrixes: #include <stdio.h>int...