✅ 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 {
char * ch1;
char ch2[MAX];
};
int main(void)
{
struct S s1;
s1.ch1="OULA";
strcpy(s1.ch2,"OULA");
s1.ch2[1]='B';
s1.ch1="DD";
printf("%s %s\n",s1.ch1,s1.ch2);
return (0);
}
Que donne l'exécution de ce programme ?