- Dynamically allocating memory to a 2D array.
- Reversing a line.
- Program to set, clear and toggle the nth bit in a given integer.
- Check whether the current machine is little-endian or big-endian?
- Implement sizeof operator.
- Function to remove duplicates from an integer array.
- Implement Linked list in C.
- Reverse a Linked list.
- Function to check whether the given Linked list is palindrome or not.
a. Using stack (Two times traversal).
b. By reversing linked list (Reverse half of the linked list and compare). - Search for a word in a line.
***Open for reviews and suggestions.