✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
{
int a, b, c;
a = 6;
b = 2;
c = 8;
if (a < c)
{
a--;
}
if (a = b)
{
a++;
}
return 0;
}
Que vaut a à la fin du programme ?