<<< Function definition format     Index     Problem with function definitions, cont. >>>

9. Problem with function definitions


  • 
    void ping() {
        //...
        pong();
        //...
    }
    
    
  • 
    void pong() {
        //...
        ping();
        //...
    }
    
    

<<< Function definition format     Index     Problem with function definitions, cont. >>>