Can please someone tell me why when i run this code ive get this error:
Invalid operands to binary expression
('ostream'(aka'basic_ostream'<char>') and 'const char*')
This error is on line 18 (cout << "gshshshme"\n";
Here is te code:
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(0));
int number = rand() % 99 + 1;
int guess;
int tries = 0;