If 111 is you trying to create a function, plz call the function something other than rand(randWheels maybe), especially if you're calling the built-in rand in the function
Your problem is in line 111 like the error says when you create a function you don't add a semicolon. The warning is because you named your function the same as a built in function and the computer wont know which to choose when you type rand(); Also the function you made doesn't return a value and you said it does. So you should change line 111 to: void rand()