<<< Scope of Variables     Index    >>>

22. Declaration Is a Statement

  • thread of control and initializers

  • avoid uninitialized variables

  • avoid global variables

  • 
    void main() 
    {
        int count = 0;
        count = count + 1; 
    } 
    
    

<<< Scope of Variables     Index    >>>