In NC (Numerical Control) machining, the movement of the tool is commanded using G-codes. For circular motion:
- G03 is used for clockwise circular interpolation.
- G02 is used for counterclockwise circular interpolation.
- R represents the radius of the circular arc.
In this case, the tool needs to move from the point (20,20) to (10,10), with the center of the arc being at (20,10). Since the movement is along a circular arc, and given that the center of the arc is specified, the G03 code for clockwise circular interpolation is used.
Therefore, the correct command is:
\[
\text{N020 G03 X20 Y20 X10 Y10 R10}
\]
Thus, the correct answer is (A).