✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#define MAX 10
struct S1 {
int i;
int j;
};
struct S2 {
int i;
struct S1 v;
};
void f(struct S2 * p)
{
<COMPLETER>
}
int main(void)
{
struct S2 s2;
f(&s2);
return (0);
}
Compléter la ligne <COMPLETER>