Multiple choice Which type of access structure member in C++ is by default? Private Public Default Protected Reveal answer Fill a bubble to check yourself B Correct answer Explanation C++ structures and classes are same. The only difference is that C++ structures have public access by default while Class members have private access by default.