Menu
 

program to check for strong number in c
program to check for strong number in c

program to check for strong number in c #include<stdio.h> int fact(int a) {   int i,f=1;   for(i=1;i<=a;i++)     f=f*i;   ...

Read more »

program to find the length of a string   through c
program to find the length of a string through c

program to find the length of a string   through c #include<stdio.h> int main() { int c=0,i=0; char string[50]; printf("\n...

Read more »

program to find sine of an angle using c
program to find sine of an angle using c

program to find sine of an angle using c #include<stdio.h> #include<math.h> int main() {   float s=0,x,i,n,f,p,j,k=2;   p...

Read more »

program to reverse a string using ponters in c
program to reverse a string using ponters in c

program to reverse a string using ponters in c #include<stdio.h> void reverse(char *); void main() { char str[100]; printf(...

Read more »

program to solve quadratic equation through c
program to solve quadratic equation through c

program to solve quadratic equation through c #include<stdio.h> #include<math.h> int main(){   float a,b,c,d,real,imag,r1,r...

Read more »

program to find all prime numbers in a certain range  through c
program to find all prime numbers in a certain range through c

program to find all prime numbers in a certain range  through c #include<stdio.h> int main() {   int n,i=1,j,c;   printf("...

Read more »

program to print  pascal's triangle   through c
program to print pascal's triangle through c

program to print  pascal's triangle   through c #include<stdio.h> int main(){   int n,i,j,t;   printf("Enter how many ro...

Read more »
 
Top