Are you saying that C is area? Area=pi*r^2 but cirumference=2*pi*r. There are a couple of ways. Firstly, as the graph of a circle is y^2+x^2=r^2 you can use if statements to check points are on the circle. The alternative is to use sin/cos.
Using 1st idea:
set display mode 640,480,32
xcenter=320
ycenter=240
radius=25
for x=-25 to 25
for y=-25 to 25
if ((x^2)+(y^2))=(radius^2)
dot x+xcenter,y+ycenter
endif
next y
next x
wait key
Using 2nd idea:
set display mode 640,480,32
xcenter=320
ycenter=240
radius=25
for a=0 to 359
x=cos(a)*radius
y=sin(a)*radius
dot x+xcenter,y+ycenter
next a
wait key
Hope that helps.