logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> #define MAX 10 struct S1 {   int i;   int...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

#include <stdio.h>

#define MAX 10

struct S1 {

  int i;

  int j;

};

struct S2 {

  int i;

  struct S1 v;

};

void f(struct S2 * p)

{

  <COMPLETER>

}

int main(void)

{

  struct S2 s2;

  f(&s2);

  return (0);

}

Compléter la ligne <COMPLETER>

More questions like this

Want instant access to all verified answers on moodle.insa-toulouse.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome