int p = 0, k;
for (k = 1; k<= 3; k++)
{
p = p * k;
}
cout << p;
The output will be -
Select from the Answers below
6
1
03 OO
Answers
Answered by
1
Output - "0"
Please Mark this as Brainliest
And Thank Me
Answered by
1
Question:-
Write the output of the following code.
Output:-
Output is 0 as the value of p is 0. whenever p is multiplied by anything, the result is 0 always 0.
Similar questions