Hallo.
Let's say, there is a structure
struct struct10{
int a1;
int a2;
int a3;
int a4;
}count[2]={
{10,20,30,40},
{50,60,70,80}
};
How can I skip a member, e.g. a2 while initializing?
Thanks a lot!
Let's say, there is a structure
struct struct10{
int a1;
int a2;
int a3;
int a4;
}count[2]={
{10,20,30,40},
{50,60,70,80}
};
How can I skip a member, e.g. a2 while initializing?
Thanks a lot!
Comment