I am getting this following error,
I have a "A.c" file in which I have included a "b.h" file, which has a "c.h" file. Now this c.h has structures which are getting used and they are all int. the structures are used in the following way:
In "c.h" file
struct abc{
int a;<---- error
};
In "b.h"
struct def{
struct abc;
};
and I have used struct def in file "A.c" file.
Please, help me know what wrong have I done.