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

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

+1 vote
    What is the purpose of extern storage specifier 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
    Explain the use of %i format specifier w.r.t scanf()?...
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
    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
    Azure Storage plays the same role in Azure that ______ plays in Amazon Web Services. 1. EC3 2. S3 3. EC2...
asked Sep 22, 2021 in Technology by JackTerrance
0 votes
    Cloud Storage stores the data in ___________. (1)Objects (2)Tables (3)Buckets (4)Entities...
asked Sep 1, 2021 in Technology by JackTerrance
0 votes
    Which type of storage offering uses SSDs and is intended for use with Virtual machines? Blob Standard Premium Basic...
asked Aug 28, 2021 in Technology by JackTerrance
0 votes
    In which type of Storage replication, data is not replicated across multiple datacenters? Geo-redundant storage (GRS) ... -redundant storage (ZRS) Locally redundant storage (LRS)...
asked Aug 28, 2021 in Technology by JackTerrance
0 votes
    Your Azure storage account is always replicated to ensure durability and high availability. By default, which of the following replications schemes is used? ZRS GRS RA-GRS LRS...
asked Aug 28, 2021 in Technology by JackTerrance
...