Consider the following definitions


			  		

Loading

โœช Choose the correct option.

Consider the following definitions



struct circle {

float radius;

struct point centre;

} circle cl;



struct point {

int x;

int y;

}


One can define a circle by the following assignment statement

A. circle cl.radius = 10; circle cl.centre.x = 0; circlet cl.centre.y = 0;
B. circle.radius = 10, circle cl.x = circle cl.y = 0;
C. circle cl. circle.radius = 10;
circle cl. circle. centre. point. x = circle cl.circle.centre.point.y = 0
D. radius = 10; x = 0; y = 0;