You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
136 B
15 lines
136 B
4 months ago
|
struct S
|
||
|
{
|
||
|
int a[5];
|
||
|
char *b[7];
|
||
|
double c[5][3];
|
||
|
int *(*d[10])[4];
|
||
|
char e[1];
|
||
|
char f[]; //same as f[0]
|
||
|
};
|
||
|
|
||
|
int foo(S&)
|
||
|
{
|
||
|
}
|
||
|
|