Write the recursive algorithm to find x^ n.
float power(float x, int n) { if(x=0) { return 0; } else if(n==0) { return 1; } if(n>0) { return x * power(x,n-1); } }
a) Sort the following list using the Radix Sort :
189, 205, 986, 421, 97, 192, 535, 839, 562, 674
Write a short note on Asymptotic Notations.
Write a C program to convert Centigrade temp into Farenhite temp.
Describe structured analysis and structured design.