Change Password

In the following program where is the variable a getting defined and where it is getting declared?
See more
extern int a is declaration, int a = 20 is the definition
int a = 20 is declaration, extern int a is the definition
int a = 20 is definition, a is not defined
a is declared, a is not defined