C++
Show the dry run
int k=1,i=2;
while(i<6)
k*=i;
i++;
Answers
Answered by
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
0
C++ will show
1
2
3
4
5
Similar questions