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; ...
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...
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...
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(...
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...
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("...
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...