logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> struct S1 {   int i;   int j; }; typed...

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

#include <stdio.h>

struct S1 {

  int i;

  int j;

};

typedef struct S1 Ma_Struct ;

int main(void)

{

  struct Ma_Struct 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 ?

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