Clocked latch is IMHO and oxymoron. It it's clocked it's a flip flop, if it's not clocked is a latch, at least in all the books I've seen.
However your formulas RC
and SC
suggest some kind of clock gating. As you tough it's the trick to make it to work with a clock.
In the simplest implementation C is the clock itself. When the clock is high the latch switches assuming that neither S and R changes during the high phase of the clock.
In a more useful implementation C is the egde of the clock. This is not something that can be expressed in boolean logic. The idea is that C is true if and only if the clock signal is rising.
The realization relies on the reaction time of the physical logic gate (the propagation delay). Lots of info in this question/answer
Rising edge pulse detector from logic gates
Remember however that the true synchronous alternative to S/R is the J/K since it doesn't suffer from the anomaly asserting both S and R. There are uses for the R/S but it's simply inferior (except for complexity)