Question: Which of the following is not a correct variable type?
A
B
C
D
float
B
real
C
int
D
double
Note: Not available
1 : struct aa
     {
       int a;
       float b;
     };2 : struct aa
    {
       int a;
       float b;
       struct aa var;
    };3 : struct aa
    {
       int a;
       float b;
       struct aa *var;
    }