aaa
C
code posted
created at 25 Jan 03:37, updated at 01 Apr 14:11
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// Bad class Employee { protected: int mDepartmentID; private: int mAge; } // Good class Employee { protected: int m_DepartmentID; private: int m_Age; } |
185 Bytes in 2 ms with coderay