Sunday, February 24, 2008

Definition vs Declaration

Question
1.)
struct a
{
int a;
float b;
struct a var;
};

2.)
struct a
{
int a;
float b;
struct a *var;
};

3.)
struct a
{
int a;
float b;
struct a **var;
};

which of the above is incorrect declaration???
ans 1.)



Solution

Definition vs declaration

Comments Invited ..

No comments: