The function $\lambda c.x$ is just a function that returns $x$ no matter what the input is. When you write:
$$ (\lambda c.x)(\lambda e.f) $$
What you should be doing is substituting all the $c$'s in the expression $x$ with $(\lambda e.f)$. Since there are no $c$'s in the expression $x$, the result of the substitution $x[c:= (\lambda e.f)]$ is simply $x$.
In a lambda-expression $\lambda x.(y)$, you should view $x$ as the parameter of the anonymous function and $y$ as the body, in which to perform the substitutions. For any further clarification I'll be available in the comments.