fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class dog{
  5. public:
  6. void bark(){
  7. cout<<"woof! woof!"<<endl;
  8. }
  9.  
  10. };
  11. int main(){
  12. dog dog1;
  13. dog1. bark();
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
woof! woof!