C++ global and local variables

前端 未结 8 894
遇见更好的自我
遇见更好的自我 2021-01-16 03:26

I have encountered the following code:

#include
using namespace std;
int i = 1;
int main(int argc,char ** argv)
{
    int i = i;
    cout&l         


        
8条回答
  •  广开言路
    2021-01-16 03:48

    Variables in deeper scopes will override the variables with the same name in a higher scope. To access a global variable, precede the name with ::

提交回复
热议问题