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> #include<string.h> int main() { int i; char str1[40]="COMPUTER"; char str2[40]=...

No comments:
Post a Comment