Computer Science, asked by adilmd, 7 months ago

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 Kaushikkalesh
1

Output - "0"

Please Mark this as Brainliest

And Thank Me

Answered by anindyaadhikari13
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