✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
struct S1 {
int i;
int j;
};
typedef struct S1 Ma_Struct ;
int main(void)
{
struct S1 s;
s.i=3;
s.j=3;
printf("%d %d\n",s.i++,s.j);
return (0);
}
Que donne l'exécution de ce programme ?