Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- class Class
- {
- public:
- int num = 3;
- };
- int main()
- {
- Class c;
- std::cout << c.num << std::endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement