C program : How to find FIBONACCI series #include <stdio.h> int main(){ int k,r; long int i=0l,j=1,f; ...
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...
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...
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 ...
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 ...
C program for solving quadratic equation
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; ...