A
Q. Consider the following pseudocode of C program:
Code:
x:=1;
i:=1;
while (x ≤ 500)
begin
x:=2x ;
i:=i+1;
end
i:=1;
while (x ≤ 500)
begin
x:=2x ;
i:=i+1;
end
- Correct Answer - Option(B)
- Views: 12
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.