Computer Science, asked by jaykhati101, 1 month ago

C++
Show the dry run

int k=1,i=2;

while(i<6)

k*=i;

i++;​

Answers

Answered by sidhnath83188
0

Answer:

Results will

Explanation:

1

2

3

4

5

This will the result k is 1 and you are using while loop to multiply k

Answered by olamideolajuyi19
0

C++ will show

1

2

3

4

5

Similar questions