labbbbbb
labbbbbb
(ii). Find the sum of digits of a number. (iii). Find an (iv). Find prime factors of
a number. (v). Find GCD of a number. (vi). Print Fibonacci series.
2.Write a program in C to implement stack using arrays. Use menu to call all its
functions: (i) to check whether stack is full (ii) to check whether stack is empty
(iii) display all elements present on the stack (iv) to display the element
present on the top of stack (v). push an element (vi) pop an element
7.Write a program to implement simple queue using arrays. Use menu (i) to
check whether queue is full (ii) to check whether queue is empty (iii) display
all elements present in the queue (iv) to display the element present at last in
the queue (v). insert an element (vi) delete an element
8.Write a program to implement simple queue using linked list. Use menu to
implement all the operations given in above list.
9.Write a program to implement circular linked list and implement all operations
of insertion and deletion.