devxlogo

Switching a Statement with a Char Array

Question:
I can’t seem to get the switch statement to work with chars.For example:

#include char answer[2];void main(){	cout << "Enter your answer: ";	cin >> answer;	switch(answer)	{	case 'a' : cout << "blah"; 		break;	case 'b' : cout << "blah blah";		break;	case 'c' : cout << "blah blah blah";		break;	case 'd' : cout << "blah blah blah blah";		break;	}}

Trying to compile this would give me an error saying that the “switch expression of type ‘char [2]’ is illegal” and that it requires an “integral expression”.

Answer:
Your compiler is trying to tell you that you can’t use an array (or any other non-integral data type) in a switch statement. Either change your declaration of the variable answer to:

  char answer; // a single char 

Or, if you need an array, use if statements instead of a switch.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.