DAYS
HOUR
MINS
SEC
Error
Explain the output ?
int main(void){
int i=1,x=1;
while(x<1000){
x=2^x;
i++;
}
printf("%d",i);