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;


Discussion

No Comment Found