fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class test {
  5. public:
  6. void czyszcze () {
  7.  
  8. }
  9.  
  10. void statyczne () {
  11. static int a = 12;
  12. }
  13. };
  14.  
  15. int main() {
  16. // your code goes here
  17. return 0;
  18. }
Success #stdin #stdout 0s 3092KB
stdin
Standard input is empty
stdout
Standard output is empty