I am having a problem with the program I am trying to code. It\'s just a Windows console program and I am very new to C++. It\'s only my 4th program.
The problem I a
You're comparing pointers, not the actual strings. Use C++ string class instead of char* (or check how C strings work).
string
char*