Terminology definition - Scope in C application

前端 未结 3 722
一生所求
一生所求 2020-12-21 14:17

Is there a specific term for the following type of C code? In my example, I want to increase the depth of scope for a small chunk of code within a function without having to

3条回答
  •  太阳男子
    2020-12-21 14:52

    The term is the scope.

    K&R2 defines the word scope as

    A name also has a scope, which is the region of the program in which it is known

    Scope is the word that refers to the visibility of an identifier.

提交回复
热议问题