Two numbers are entered through keyboard, write a program to find the value of one number raised to the power another.
For the List class, add a Boolean-valued function that determines whether the data items in the linked list are arranged in ascending order. How can i do this using recursion ?
Write a program to print the given integers in the corresponding wordings?Say for eg. if 123 is given as input the output should be displayed as \
Latest Answer: This is the recursive version of the program.#include#includestruct list{ int month; struct list *next;};typedef struct list node;void init(node* ...
A function even_odd_difference()passes the array of elements.Write a program to calculate the difference of the two sums of which one sum adds the elements of odd ones and another adds the elments of even ones.
Latest Answer: we cantr find the number of node in circular link list because there is no last node in the cir link list .(if any comment plz mail to me ) ...
Latest Answer: int main(){int n,i,f1=0,f2=1,f3=0;printf("Enter number of terms : ");scanf("%d",&n);if(n==1)printf("0");if (n==2)printf("0 1");if(n>=3){for(i=3;i
Latest Answer: /*Function to insert a node in singly sorted linked list *//*pass the header of the list and the element to be inserted *//*header node i,e head is declared as global *//*node is a structure which contains int info; and a pointer of node ...