C++ global and local variables

前端 未结 8 1053
遇见更好的自我
遇见更好的自我 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:41

    Variables in the innermost scope will override variables with the same Name without warning.

提交回复
热议问题