✅ 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];
};
int main(void)
{
struct S s1;
struct S * p;
p=&s1;
<COMPLETER>
return (0);
}
Compléter la ligne <COMPLETER>