Scope Rules in C Language
In any programming language, the scope is the area in which a variable defined in the program exists; outside of this area, the variable cannot be accessed. In C language, there are three places where variables can be declared:Local variables inside functions or blocksGlobal variables outside of all functionsFormal parameters in function definitionsIn the last … Read more