C program : How to solve quadratic equation using C #include <stdio.h> #include <math.h> int main(){ f...
c program to find Variance, Mean, Standard Deviation
C program - How to Find Variance, Mean and Standard Deviation using C #include <stdio.h> #include <conio.h> #incl...
C program to convert days into years,weeks and days
C program : How to convert days into years,weeks and days #include <stdio.h> #define DAYSINWEEK 7 void main() { ...
c program to find out perfect number
C program - How to find out the perfect number #include <stdio.h> int main(){ int n,i=1,sum=0; printf( &qu...
c program to check given number is palindrome number or not
C program : How to check given number is palindrome number or not #include <stdio.h> int main(){ int num,r,sum=...
Check given number is armstrong number or not
C program to check the given number is armstrong number or not #include <stdio.h> int main(){ int num,r,sum=0,temp...
check given number is strong number or not
C program - How to check given number is strong number or not #include <stdio.h> int main(){ int num,i,f,r,sum=0,temp; ...
Check given number is prime number or not
C program - How to check given number is prime number or not #include <stdio.h> int main(){ int num,i,coun...
c program to print pascal triangle
C Program - How to Print pascal triangle #include <stdio.h> long fact( int ); int main(){ int line,i,j; ...
Biggest of three number
C program to find biggest one out of three number #include <stdio.h> int main() { int a, b, c; printf ( "...
upper triangular matrix
C program for upper triangular matrix #include <stdio.h> int main(){ int a[3][3],i,j; float determ...
transpose of a matrix
C program for transpose of a matrix #include <stdio.h> int main(){ int a[10][10],b[10][10],i,j,k=0,m,n; ...
Subtraction of two matrix
C program for subtraction of two matrices #include <stdio.h> int main(){ int a[3][3],b[3][3],c[3][3],i,j; p...
Strassen matrix multiplication
C program - strassen matrix multiplication #include <stdio.h> int main(){ int a[2][2],b[2][2],c[2][2],i,j; ...