struct S {
/* by default, access is public unless explicitly stated otherwise via private: or protected: */
int x; // This is public by default
};
class C {
/* by default, access is private unless explicitly stated otherwise via public: or protected: */
int x; // This is private by default
};