InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of extern storage specifier. |
|
Answer» Used to resolve the scope of global symbol #include <iostream>using namespace std;main() { extern int i; cout<<i<<endl;}int i = 20;
|
|