When I ran the following code:
#include <iostream>
int main()
{
std::cout << "Welcome To TripleX";
std::cout << std::endl;
std::cout << "You are a detective breaking into the secret sever rooms of a notorious cyberthief";
std::cout << std::endl;
std::cout << "You need to enter the correct password to continue...";
int a = 4;
std::cout << a;
return 0;
}
The variable was not printed. What is the reason for this error?
