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

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
    What is the purpose of extern storage specifier?...
asked Jan 17, 2021 in Technology by JackTerrance
+1 vote
    Explain the use of %i format specifier w.r.t scanf() in C-Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    When should we use the register storage specifier?...
asked Jan 17, 2021 in Technology by JackTerrance
+1 vote
    When should we use the register storage specifier?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    In my dll there is a method that I want to export. //Works: extern "C" __declspec(dllexport) // ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    What is the purpose of #undef preprocessor in C Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    What is the purpose of built-in stricmp() function in C Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
+1 vote
    Explain the purpose of the function sprintf() in C- Programming?...
asked Nov 9, 2020 in Technology by JackTerrance
0 votes
    Explain the use of %i format specifier w.r.t scanf()?...
asked Jan 17, 2021 in Technology by JackTerrance
0 votes
    Which of these is used as a default for a member of a class if no access specifier is used for it ... programming questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    What is Windows Vista? (a) Processor (b) Output Device (c) Storage Device (d) Input Device (e) Operating System Select the correct answer from above options...
asked Dec 11, 2021 in Education by JackTerrance
0 votes
    Storage that returns its data after the power is turned off is referred' to as- (a) Sequential storage (b) ... (e) Volatile storage Select the correct answer from above options...
asked Dec 11, 2021 in Education by JackTerrance
...