loop through structure c

Solutions on MaxInterview for loop through structure c by the best coders in the world

showing results for - "loop through structure c"
Philippe
23 Jan 2016
1typedef union vec3_u
2{
3    struct vec3_s {
4        float x, y, z;
5    };
6    float vect3_a[3];
7}
8vec3;