is there any difference in following two instructions:
int a;
extern int a;
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Wim SturkenboomPosted Sep 21, 2014, 4:05 PM
If I recall correctly, you will get errors during the linking phase if int a does not exist and the compiler encounters extern int a.