Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

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 111 views
1 answer 98 views
98 views asked Feb 26, 2023 by avibootz
1 answer 100 views
100 views asked Nov 28, 2022 by avibootz
1 answer 156 views
2 answers 195 views
...