9. What will be the output of the following program?
#include <stdio.h>
int main(){
int n = 010101, count=0;
while(n !=0) {
n/=10;
++count;
}
printf("%d", count);
return 0;
}
Answers
Answered by
0
Answer:
4
Explanation:
Similar questions
Science,
1 month ago
Computer Science,
3 months ago
Geography,
3 months ago
Math,
9 months ago
Biology,
9 months ago