Concept Flow - Protected access modifier
Define Base Class with protected member
Create Derived Class inheriting Base
Access protected member inside Derived
Use Derived object to call method accessing protected member
Protected member NOT accessible outside inheritance
END
Shows how a protected member is accessible inside derived classes but not outside.