0 votes
by (876 points)

1 Answer

0 votes
by (524 points)

A scope is a region of the program, and the scope of variables refers to the area of the program where the variables can be accessed after its declaration. In C, variables are always statically scoped i.e., binding of a variable can be determined by program text and is independent of the run-time function call stack.

Welcome to CodersEditor Q&A, where you can ask questions and receive answers from other members of the community.
...