Categories
Education
General
Credit
Health
Insurance
Home
Q&A
Education
Technology
Credit
General
Health
Insurance
Questions
Ask a Question
What is the purpose of extern storage specifier in C- Programming?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
1.8m
points)
What is the purpose of extern storage specifier in C- Programming?
interview-question-answer
technology-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 9, 2020
by
JackTerrance
(
1.8m
points)
Used to resolve the scope of global symbol.
Eg:
main() {
extern int i;
Printf(ā%dā,i);
}
int i = 20;
Please
log in
or
register
to add a comment.
Related questions
0
votes
Q: What is the purpose of extern storage specifier?
asked
Jan 17, 2021
in
Technology
by
JackTerrance
(
1.8m
points)
interview-question-answer
technology-questions-answers
+1
vote
Q: Explain the use of %i format specifier w.r.t scanf() in C-Programming?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
1.8m
points)
interview-question-answer
technology-questions-answers
0
votes
Q: When should we use the register storage specifier?
asked
Jan 17, 2021
in
Technology
by
JackTerrance
(
1.8m
points)
interview-question-answer
technology-questions-answers
+1
vote
Q: When should we use the register storage specifier?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
1.8m
points)
interview-question-answer
technology-questions-answers
0
votes
Q: What is the purpose of #undef preprocessor in C Programming?
asked
Nov 9, 2020
in
Technology
by
JackTerrance
(
1.8m
points)
interview-question-answer
technology-questions-answers
...