✅ 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)
{
p->i=3;
strcpy(p->ch,"oula");
}
int main(void)
{
struct S s1;
<COMPLETER>
return (0);
}
Compléter la ligne <COMPLETER>