Question: How do I store different solutions in a multi-solution problem?

Basically, I have the code

solve([E1, E2, E3, E4, E5, E6, E7, E8], [C1, C2, C3, C4, C5, C6, C7, C8])

and I want to store each of the solutions (C1,C2,C3...) as a different variable.

How would I go about doing that? (without simply copy and pasting the solutions after hitting ENTER)

 

I thought about using

{X1,X2,X3,X4,X5,X6,X7,X8} := solve([E1, E2, E3, E4, E5, E6, E7, E8], [C1, C2, C3, C4, C5, C6, C7, C8])

but it wouldn't go through.

Please Wait...