Hello everyone,


We always write const int other than int const, are they the same?

Example,

Code:
	int const & x = 10; 

	const int& y = 10;

thanks in advance,
George