Questions tagged [undeclared-identifier]
257 questions
-7
votes
1 answer
C++ if/else undeclared identifier, trying to use words
I'm trying to make a little game, and I'm a beginner.
The problem is the parts with the ifs and the else, where it says "Lady" and "Sir".
#include
#include
using namespace std;
int main()
{
string playerName;
int…

SophiaTehDragon
- 1
- 1
-7
votes
2 answers
Undeclared identifier/Identifier not found issues
This is my code, and for some reason it claims that there are undeclared identifier although I did declare everything
#include
#include
#include
#include
#include
using namespace std;
char…

john smith
- 9
- 1