Kizspy | Question: 19
(Choose 1 answer)
What is the output when the sample code below is executed?
#include<stdio.h>
int main(){int a=10,b=20,c=30;while(a>1){if(b%2!=0)a/=10;b--;c*=2;}printf("%d %d; %d",a,b,c);return 0;}
A. 1; 18; 120
Β. 10; 19; 60
C. 1; 20; 60
D. 10; 19; 120
FUOVER