<<< Scope of Variables     Index    >>>

22. Declaration Is a Statement

  • thread of control and initializers

  • avoid uninitialized variables

  • avoid global variables

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

<<< Scope of Variables     Index    >>>