It's generally possible to determine A, B, and C (not necessarily unique), but those conditions you gave aren't possible.
Let $A = A_1A_2A_3A_4A_5A_6A_7A_8, B = B_1...B_8, C = C_1...C_8$. To find A, B, and C you have to find them one binary digit at a time. Starting with the left-most bit, we have that $A_1 xor B_1 = 1, A_1 xor C_1 = 0, B_1 xor C_1 = 1$. Now since A1 xor C1 = 0, that means A1=C1. Since A1 xor B1 = 1 then A1 != B1, and since B1 xor C1 = 1 then B1 ≠ C1. This is satisfied by either (A1, B1, C1) = (1, 0, 1) or (0, 1, 0).
Moving on to bit two, we have $A_2 xor B_2 = 0, A_2 xor C_2 = 1, B_2 xor C_2 = 0$. These yield that A2=B2, B2=C2 so that means A2=C2, but since A2 xor C2 = 1, A2≠C2 which leads to a contradiction so the particular configuration you gave is impossible.