How to set different values to auto variable (Remember: you cannot change the type) in C++

1 Answer

0 votes
#include <iostream>

int main() 
{
	auto n = 13;
	std::cout << n << std::endl;

	n = 'Z';
	std::cout << n << std::endl;

	n = 3.14;
	std::cout << n << std::endl;

	// Error: a value of type "const char *" cannot be assigned to an entity of type "int"
	// n = "c++"; 

	return 0;
}

/*
run:

13
90
3

*/

 



answered Feb 15, 2018 by avibootz

Related questions

1 answer 127 views
1 answer 107 views
107 views asked Feb 26, 2023 by avibootz
1 answer 111 views
111 views asked Nov 28, 2022 by avibootz
1 answer 170 views
2 answers 213 views
...