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