Subscribe to:
Post Comments (Atom)
x^y using recursion
Program: #include<stdio.h> int power(int a,int b); int main() { int x,y,ans; printf("Enter x and y:\n "); scanf(...
-
Program: #include<stdio.h> int main() { int a[4][4],n,i,j; printf("Enter value of n: "); /*rows and cols*/ sca...
-
Program: #include<stdio.h> int power(int a,int b); int main() { int x,y,ans; printf("Enter x and y:\n "); scanf(...
-
Program: #include<stdio.h> int main() { int a[4][4],b[4][4],c[4][4],m,n,p,q,i,j; printf("Enter no. of rows in matrix A: ...

No comments:
Post a Comment