C Programming – Understanding the scope of a variable
When we define a variable in C, have you ever noticed the variable has a scope? Every variable you define in C, has a scope defined; you are not allowed to access the variable beyond it’s scope. That means, the variable will be visible only within the defined scope. Through this article we are going […]