C program to find FIBONACCI series C program to find FIBONACCI series

C program : How to find FIBONACCI series #include <stdio.h> int  main(){      int  k,r;      long int  i=0l,j=1,f; ...

Read more »

C program to find Factorial of a number C program to find Factorial of a number

C program : How to find factorial of a number  #include <stdio.h> int  main(){    int  i=1,f=1,num;   printf( "Ent...

Read more »

C program which print its own source code as its output C program which print its own source code as its output

C program : How to print own source code as output using c  #include <stdio.h> int  main(){     FILE *fp;      char...

Read more »

C program to print hello world without using semicolon C program to print hello world without using semicolon

C program : How to print hello world without using semicolon #include <stdio.h> void  main(){      if (printf( "Hello ...

Read more »

Find out LCM of two numbers Find out LCM of two numbers

C program to find out LCM of two numbers: #include <stdio.h> int  main(){    int  n1,n2,x,y;   printf( "\nEnter ...

Read more »

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 »
 
Top