✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <string.h>
#define MAX 10
struct S {
int i;
char ch[MAX];
};
void f(struct S * p)
{
// initialiser la structure
<COMPLETER>
}
int main(void)
{
struct S s1;
f(&s1);
return (0);
}
Compléter la ligne <COMPLETER>