Open In App
Related Articles

C | Variable Declaration and Scope | Question 8

Improve Article
Improve
Save Article
Save
Like Article
Like

Consider the following C program, which variable has the longest scope?




int
int main()
{
   int
   // ..
   // ..
}
int

(A) a
(B) b
(C) c
(D) All have same scope


Answer: (A)

Explanation: a is accessible everywhere.

b is limited to main()

c is accessible only after its declaration.

Quiz of this Question

Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads