hi, i am a beginner and i am my project on maze solving robot in c language, and when i have compiled it, i got a message "warning C235: parameter 1: different types".
can any one explain when do i get this kind of message?
When parameter 1 happens to be different type than expected...
The prototype and the parameter being passed are in disagreement. Look at the code that's being flagged. Look at the routine or it's prototype.
For example if a routine expects char but you pass in an int
Look at the code and think about it for a second.