void main()
{
int n = 21;
int out = 1;
while (n >= 3)
{
n = 2;
out *= (n/2);
}
printf("%d",n*out);
}
Answers
Answered by
4
Answer:
2
Explanation:
Answered by
0
We recall the concept of program
A program is a procedure to solve a problem with a computer
Given:
Out
Thus
Similar questions