Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 328 Bytes

Visibility.md

File metadata and controls

8 lines (5 loc) · 328 Bytes

Visibility in C++

Video

Visibility is a concept inherent of OOP.

In C++ we have three types of visibility modifiers private, public and protected
In classes the default visibility is private; in structs in public.