I got a circle of 900 radius, knowing its center coordinates A(x1, y1) and got another point with also known coordinates B(x2, y2). I draw a line between point A and B. It intersects the circle in a point C(x,y). How can I find the coordinates of that point?

Let $\Delta x = x_2 - x_1$ and $\Delta y = y_2 - y_1$. Then by constructing similar right triangles and applying Pythagoras, it follows that: $$ (x, y) = \left(x_1 + \frac{900 \Delta x}{\sqrt{(\Delta x)^2 + (\Delta y)^2}},\quad y_1 + \frac{900 \Delta y}{\sqrt{(\Delta x)^2 + (\Delta y)^2}} \right) $$