i got an error that said \"error: conflicting types for \'____\'. What does that mean?
What datatype is '___'?
My guess is that you're trying to initialize a variable of a type that can't accept the initial value. Like saying int i = "hello";
int i = "hello";