OK, so assuming you mean an exclusive or (which I think is correct) and that $P$ only if $Q$ means $P \rightarrow Q$ (i.e. if $P$ then $Q$)...which is explained here, then you have:
\begin{align}
\left((A \wedge \neg B) \vee (\neg A \wedge B)\right) \rightarrow C =& \neg\left((A \wedge \neg B) \vee (\neg A \wedge B)\right) \vee C \\
= & \left(\neg(A \wedge \neg B) \wedge \neg(\neg A \wedge B)\right) \vee C\\
=& \left((\neg A \vee B) \wedge ( A \vee \neg B)\right) \vee C \\
=& \left((\neg A \wedge ( A \vee \neg B)) \vee (B \wedge ( A \vee \neg B))\right)\vee C \\
=& \left(((\neg A \wedge A) \vee (\neg A \wedge \neg B)) \vee ((B \wedge A) \vee (B \wedge \neg B))\right)\vee C \\
=& \left((\neg A \wedge \neg B) \vee (B \wedge A) \right)\vee C \\
\end{align}
I think that's about as far as we can go--either $C$ is true (regardless of $A$ and $B$'s values), both $A$ and $B$ are false, or both $A$ and $B$ are true (note that both of the last two conditions negate the exclusive or making the implication trivially true).
Assuming $C$ is false, then we are left with: $(\neg A \wedge \neg B) \vee (B \wedge A)$. This means that whatever value $A$ has, then $B$ has and vice versa. This makes the first statement true, the second statement definitively false, the third statement false (because $A$ and $B$ could both be false), and the fourth statement false (because $A$ could be true and $B$ could be true...and of course $C$ is false as this was our assumption).
...note that if we look at the case when $C$ is true, then all of these statements are trivially true (we don't need to check that case).