Finding the minimum and maximum values in a Binary Search Tree (BST) is one of the most fundamental concepts in Data Structures & Algorithms. In this video, we use the C language to show you the exact pointer logic used to traverse the tree efficiently. In this video, you will learn: ✅ The core logic behind BST traversal. ✅ Why Minimum is always the leftmost node. ✅ Why Maximum is always the rightmost node. ✅ How to implement this in C with a simple while loop. ✅ Time complexity analysis ($O(h)$ or $O(\log n)$). Timestamps: 0:00 Introduction 0:11 BST property 0:18 Min value theory explain 0:26 Min value code explain 0:45 Max value theroy and code explain 0:57 Min value example 1:09 Max value example 1:19 Ending