Note:
- These codes might differ slightly from those provided by the instructor, but they perform the intended tasks effectively.
- Since our lab setup used Visual Studio 2010, you may notice
#include <conio.h>forgetch()functions in some of the programs. For newer compilers (like g++ on Linux), this inclusion isn't necessary and can be removed.
- Average N
- Average N Array
- Average Of Two
- Student
- Student Array
- Swap Aliasing
- Swap Call By Value
- Swap Pointers
- Acess Specifier Public
- Acess Specifier Public Private
- Friend Class
- Friend Function
- Friend Function Of Two Classes
- Copy Constructor
- Default Constructor
- Destructor
- Max Of Two Objects Using Friend Function
- Parameterized Constructor For Student Class
- Swap 2 Nums Of 2 Objects Of Different Class Using Friend Function
- [1 Friend Exchange](.\Test Questions\1 friend_exchange.cpp)
- [10 Linear Queue](.\Test Questions\10 linear_queue.cpp)
- [11 Circular Queue](.\Test Questions\11 circular_queue.cpp)
- [12 Priority Queue](.\Test Questions\12 priority_queue.cpp)
- [13 User Operation On Singly Linked List](.\Test Questions\13 user_operation_on_singly_linked_list.cpp)
- [14 Delete From Front Using Linked List](.\Test Questions\14 delete_from_front_using_linked_list.cpp)
- [15 Search And Delete Using Circular Linked List](.\Test Questions\15 search_and_delete_using_circular_linked_list.cpp)
- [16 Delet From Frontend Using Doubly Linked List](.\Test Questions\16 delet_from_frontend_using_doubly_linked_list.cpp)
- [2 Complex Addition](.\Test Questions\2 complex_addition.cpp)
- [3 Unary Minus Operator Overloaded](.\Test Questions\3 unary_minus_operator_overloaded.cpp)
- [4 Student Result](.\Test Questions\4 student_result.cpp)
- [5 Student Sports Result](.\Test Questions\5 student_sports_result.cpp)
- [6 Geofig Area](.\Test Questions\6 geofig_area.cpp)
- [7 Stack Implementation](.\Test Questions\7 stack_implementation.cpp)
- [8 Infix To Postfix](.\Test Questions\8 infix_to_postfix.cpp)
- [9 Evalute Valid Postfix](.\Test Questions\9 evalute_valid_postfix.cpp)