0 votes
in C Plus Plus by
What do you mean by the scope of the variable?

1 Answer

0 votes
by

Scope in a programming language is the block or a region where a defined variable will have its existence and beyond that region, the variable is automatically destroyed.  Every variable has its defined scope. In simple terms, the scope of a variable is equal to its life in the program. The variable can be declared in three places These are:

  • Local Variables: Inside a given function or a block
  • Global Variables: Out of all functions globally inside the program.
  • Formal Parameters: In-function parameters only.

Related questions

0 votes
asked Jan 6 in C Plus Plus by GeorgeBell
0 votes
asked Jan 12 in C Plus Plus by GeorgeBell
...