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 a complete program to reverse a linkked list in C.first node is allocated memory but dosent contain any data.#include#includestruct list{ int month; struct list *next;};typedef ...
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: #include#includevoid main(){ int number; clrscr(); printf("Enter number till which fibonacci series"); scanf("%d",&number); ...
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 ...