logo

Crowdly

Browser

Add to Chrome

int main (void) {   int x, y, z;   x = 9;   y = 2;   for ...

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

int main (void)

{

  int x, y, z;

  x = 9;

  y = 2;

  for (z = 6 ; z >= 2 ; z--)

  {

    y = 3;

    while (y < 6)

    {

      y++;

      if (y == z)

      {

        x = x--;

      }

    }

  }

  return 0;

}

Que vaut x à la fin du programme ?

0%
0%
0%
0%
0%
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