line 64. Separate your comparisons... () && () && ()
line 138 You don't have a function named coinResult.
Line 139 Something is not defined
Lines 142 - 145 is not right.
so a random number 0 || 1 is supposed to be assigned, but since coinFlip is a char, it needs an "int" data type, i'm just so lost on how to fix this because i'm a beginner.
I honestly have no idea.. Went to 48 to 5! Thank you! Now are those other errors a big problem... I tried renaming those and still get that function error. also the "'const char*' ", does this have to do with "coinToss" being a int instead of a char? (149-152)
Well, yes, you shouldn't assign integers to chars, although the compiler will probably allow it.
But, the problem in line 142 is that coin_toss is not a function, and you are using a function call operator there. So that has to be fixed, but I can't figure out what did you have in mind there.