in Technology by

What is the purpose of extern storage specifier in C- Programming?

Please log in or register to answer this question.

1 Answer

0 votes
by

Used to resolve the scope of global symbol. Eg: main() { extern int i; Printf(“%d”,i); } int i = 20;

Related questions

0 votes
asked Feb 13, 2022 in Education by JackTerrance
+1 vote
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
asked Dec 11, 2021 in Education by JackTerrance
...