Answers for "why wont a function stop C++"

C++
0

why wont a function stop C++

//check location of return statement

//Add return statement after void
case '2':
		void displayInfo();
		return displayInfo();
		break;

//Not after switch closes, as then it will return nevertheless
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language