Computer Science, asked by palaksharma2642, 8 months ago

what do you mean by scope of a variable​

Answers

Answered by kartiksharma0711
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 raviranjan9979
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