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