Suppose that you want to fit the $n$ data points $(t_i,C_i)$ using, as a model, $$C=a(1-e^{bt})$$ This model is highly nonlinear and, as already mentioned, nonlinear regression is required in order to minimize, say, the sum of squared errors $$SSQ=\sum_{i=1}^n \Big(a(1-e^{bt_i})-C_i\Big)^2$$ The problem is that you need "reasonable" estimates to start the procedure.
But, suppose that you fix $b$; then, you can define $y_i=1-e^{bt_i}$ and the problem reduces to $C=a y$ which correspond to a linear regression through the origin (no intercept). So, for this value of $b$, you can compute $SSQ$; now, change $b$ until you get a point looking more or less like the minimum. So, you have your starting values.
Even if fitting a curve based on three points is not the best situation, let us try using your data for a few trials $$\left(
\begin{array}{cc}
b & SSQ(b) \\
-0.1 & 9.432 \\
-0.2 & 1.130 \\
-0.3 & 1.105 \\
-0.4 & 2.847
\end{array}
\right)$$
So, we can use as starting guesses $b=-0.2$ to which corresponds $a=10.87$.
The nonlinear regression will give $$C=10.3403 \left(1-e^{-0.244113 t}\right)$$ corresponding to $SSQ=0.660$; the predicted values would be $6.45$, $8.87$, $10.26$ (which is not very good).