Advertisement
kevkul

c++

Nov 18th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.08 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. struct C {
  4.     static int i;
  5.     static int j;
  6. };
  7.  
  8. int i = 10;
  9. int C::i = 20;
  10. int C::j = i + 1;
  11.  
  12. int main() {
  13.     std::cout << C::j << std::endl;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement