type equivalence of structures in c

272 Views Asked by At

which of the following "structures" are structure-equivalent?

struct abd0{
  int x;
  float y;
};

struct abd1{
  float y;
  int x;
};

struct abd2{
 float x;
 int x;
};

Can there be any case where name equivalence exists and structural equivalence does not?

0

There are 0 best solutions below