Tool for running C/C++ easily :- runcpp

Arrays

  1. Writa a program to find the address of a given element in one dimensional array. Here
  2. Writa a program to find the address of a given element in two dimensional array arranged in row major order. Here
  3. Writa a program to find the address of a given element in two dimensional array arranged in column major order. Here
  4. Matrix Addition Here
  5. Matrix Multiplication Here
  6. Sparse Matrix Here
  7. Reverse Array Here

Linked List

  1. Write a program that uses functions to perform the following
  2. Create a singly linked list of integers
  3. Insert a given integer in the above linked list at beginning, middle and end.
  4. Delete a given integr in the above linked list at beginning, middle and end.
  5. Display the contents of the list after deletion. Here
  6. Write a program that uses functions to perform the following
  7. Create a doubly linked list of integers
  8. Insert a given integer in the above linked list at beginning, middle and end.
  9. Delete a given integr in the above linked list at beginning, middle and end.
  10. Display the contents of the list after deletion. Here
  11. Write a program that uses functions to perform the following
  12. Create a circular linked list of integers
  13. Insert a given integer in the above linked list at beginning, middle and end.
  14. Delete a given integr in the above linked list at beginning, middle and end.
  15. Display the contents of the list after deletion. Here
  16. Write a program that uses functions to perform the following
  17. Create a circular doubly linked list of integers
  18. Insert a given integer in the above linked list at beginning, middle and end.
  19. Delete a given integr in the above linked list at beginning, middle and end.
  20. Display the contents of the list after deletion. Here
  21. Write structure declaration for storing terms of polynomial. Write a C function that accepts two polynomial of a single variable, does their addition and return the result polynomial. Here
  22. Add Two Linked Lists of numbers with thier corresponding elements. Here

Stack

  1. Reversing string using stack. Here
  2. Binary COnversion using stack. Here

Recursion

  1. HCF. Here
  2. Fibonacci Series. Here
  3. nth Fibonacci Number Here
  4. Tower of hanoi. Here

Tree

  1. DIfferent Traversal methods and checking if BST. here
  2. BST Search. here