KatrinaTeller
Member
- Joined
- Aug 30, 2025
- Messages
- 6
I ran into a "conflicting types" error while writing a simple function. I created the function then called it in my main program as just the function name with a variable. That gave me the error. But when I called it by writing out the full return type and parameter type, it worked fine. I'm guessing I'm missing something about declarations versus calls. Do I need to set up... a prototype before using the function or is there another common reason this error shows up?