✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int main()
{
int x;
int y;
int z;
x=3;
y=2;
if(x>5)
{
x=x-5;
y=1;
}
z=x*y;
printf("%d \n",z);
return 0;
}
Que va afficher le programme ?