Open In App

C | Variable Declaration and Scope | Question 2

Like Article
Like
Save
Share
Report

Predict the output




#include <stdio.h>
int var = 20;
int main()
{
    int var = var;
    printf("%d ", var);
    return 0;
}


(A) Garbage Value
(B) 20
(C) Compiler Error


Answer: (A)

Explanation: First var is declared, then value is assigned to it. As soon as var is declared as a local variable, it hides the global variable var.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads