Variable declaration vs definition

前端 未结 3 1647
深忆病人
深忆病人 2020-12-04 19:55

I was reading some info on externs. Now the author started mentioning variable declaration and definition. By declaration he referred to case when: if a variable is declared

3条回答
  •  一整个雨季
    2020-12-04 20:27

    During declaration, a memory location is reserved by the name of that variable, but during definition memory space is also allocated to that variable.

提交回复
热议问题