C program for solving quadratic equation C program for solving quadratic equation

C program : How to solve quadratic equation using C  #include <stdio.h> #include <math.h>   int  main(){    f...

Read more »

 c program to find Variance, Mean, Standard Deviation 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...

Read more »

C program to convert days into years,weeks and days 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() { ...

Read more »

c program to find out perfect number 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...

Read more »

c program to check given number is palindrome number or not 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=...

Read more »

Check given number is armstrong number or not 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...

Read more »

check given number is strong number or not 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; ...

Read more »

Check given number is prime number or not 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...

Read more »

c program to print pascal triangle 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;  ...

Read more »

Biggest of three number Biggest of three number

C program to find biggest one out of three number #include <stdio.h> int  main() {     int  a, b, c;   printf ( "...

Read more »

upper triangular matrix upper triangular matrix

          C program for upper triangular matrix #include <stdio.h> int  main(){    int  a[3][3],i,j;    float  determ...

Read more »

transpose of a matrix 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; ...

Read more »

Subtraction of two matrix 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...

Read more »

Strassen matrix multiplication 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; ...

Read more »
 
Top