Tool for running C/C++ easily :- runcpp
Arrays¶
- Writa a program to find the address of a given element in one dimensional array. Here
- Writa a program to find the address of a given element in two dimensional array arranged in row major order. Here
- Writa a program to find the address of a given element in two dimensional array arranged in column major order. Here
- Matrix Addition Here
- Matrix Multiplication Here
- Sparse Matrix Here
- Reverse Array Here
Linked List¶
- Write a program that uses functions to perform the following
- Create a singly linked list of integers
- Insert a given integer in the above linked list at beginning, middle and end.
- Delete a given integr in the above linked list at beginning, middle and end.
- Display the contents of the list after deletion. Here
- Write a program that uses functions to perform the following
- Create a doubly linked list of integers
- Insert a given integer in the above linked list at beginning, middle and end.
- Delete a given integr in the above linked list at beginning, middle and end.
- Display the contents of the list after deletion. Here
- Write a program that uses functions to perform the following
- Create a circular linked list of integers
- Insert a given integer in the above linked list at beginning, middle and end.
- Delete a given integr in the above linked list at beginning, middle and end.
- Display the contents of the list after deletion. Here
- Write a program that uses functions to perform the following
- Create a circular doubly linked list of integers
- Insert a given integer in the above linked list at beginning, middle and end.
- Delete a given integr in the above linked list at beginning, middle and end.
- Display the contents of the list after deletion. Here
- 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
- Add Two Linked Lists of numbers with thier corresponding elements. Here