I need to know the negation of $A \veebar B \veebar C $, with $\veebar$
thanks in advance!!
The truth table for $A\veebar B \veebar C$ is
.
Therefore the truth table for its negation is
.
Now you can construct the formula that yields the truth table above by inspecting it:
$$\underbrace{(A\land B\land \neg C)}_{\large \text{1st true line}} \lor \underbrace{(A\land \neg B\land C)}_{\large \text{2nd true line}}\lor \ldots$$
It's not pretty, but it works.
Assuming that $\veebar$ means $\mathtt{xor}$, formula $$a_1 \veebar a_2 \veebar \ldots \veebar a_n$$
means that odd number of elements $a_i$-s is true. Interpreting truth as $1$ and falsehood as $0$ we arrive at
$$a_1 + a_2 + \ldots + a_n \equiv 1 \pmod{2}.$$
Naturally, its negation is that even number of elements is true,
$$a_1 + a_2 + \ldots + a_n \equiv 0 \pmod{2}$$
which can be transformed to
$$a_1 + a_2 + \ldots + a_n + 1 \equiv 1 \pmod{2},$$
that is
$$a_1 \veebar a_2 \veebar \ldots \veebar a_n \veebar \mathtt{true}.$$
In your case this is equivalent to $A \veebar B \veebar C \veebar \mathtt{true}$.
I hope this helps $\ddot\smile$