what do you mean by scope of a variable
Answers
Answered by
1
Advertisements. A scope in any programming is a region of the program where a defined variable can have its existence and beyond that variable it cannot be accessed. There are three places where variables can be declared in C programming language − Inside a function or a block which is called local variables.
Mark as brainliest answer...
Answered by
0
Answer:
Scope refers to the visibility of variables. In other words, which parts of your program can see or use it. Normally, every variable has a global scope. Once defined, every part of your program can access a variable.
Similar questions