Will the following code compile?
int a = 0;
double b = 0.0;

namespace space1
{
	int a=1;
	double b=1.0;
}
namespace space2
{
	int a=2;
	double b=2.0;
}
int main()
{
	int a=0;
	double b=0.0;

	return 0;
}
Explanation
Yes, it will. Variables from different namespaces can have the same names.

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты