โช Choose the correct option.
Consider the following definitions
struct circle {
float radius;
struct point centre;
} circle cl;
struct point {
int x;
int y;
}
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