Advertisement
spacechase0

Untitled

Sep 28th, 2013
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. class Class
  4. {
  5.     public:
  6.         int num = 3;
  7. };
  8.  
  9. int main()
  10. {
  11.     Class c;
  12.     std::cout << c.num << std::endl;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement