CBSE BOARD XII, asked by subashd1525, 3 months ago

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 durgasrimurugan18
0

Answer:

4

Explanation:

Similar questions