C++Primer Fifth Edition: Exercise 2.11

#include<iostream>

extern int ix = 1024;

int main()
{
    
    
	int iy;
	extern int iz;
}

ix is ​​the declaration
iy is the declaration and
iz is the declaration

Guess you like

Origin blog.csdn.net/Xgggcalled/article/details/108814186