You can convert the _standard form_ $Ax+By=C$ into _normal form_ by dividing both sides by $\sqrt {A^2+B^2}$. You can do this since not both $A$ and $B$ are zero. You then get
$$ax+by=r$$
where $a^2+b^2=1$. Then a point on the line, in fact the point that is closest to the origin, is $(ar, br)$. If you substitute this point into the normal form equation, you get
$$a \cdot ar + b \cdot br = (a^2+b^2) \cdot r = 1 \cdot r = r$$
So you can use these parametric equations, which have the advantage that changing $t$ by $1$ also changes the _distance_ of $(x,y)$ by $1$:
$$x(t) = ar + bt$$ $$y(t) = br - at$$
If you really want to use the original $A$, $B$, and $C$, and lose the distance property above, you could use
$$x(t) = {AC \over A^2+B^2} + Bt$$ $$y(t) = {BC \over A^2+B^2} - At$$
Note that $C$ in my equations is not exactly the same as your $C$.