In the following program where is the variable a getting defined and where it is getting declared?

#include <stdio.h> 
void main() 
{ 
    extern int a; 
    printf("\n a = %d", a); 
} 
int a = 20; 

 

Suy nghĩ trả lời câu hỏi trước khi xem đáp án

ATNETWORK
ZUNIA9