C++ global and local variables

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

    The int i = i; statement in main() declares a local variable that hides the global variable.

    It initializes itself with itself (which has an indeterminate value). So the global i simply isn't used.

提交回复
热议问题