What will be the printed value of digit of the following program?
#include <stdio.h>
main()
{
int digit=0;
while (digit>=9)
digit++;
printf("%d", digit);
}
Answers
Answered by
2
Answer:
Nothing will print. This is because the expression in the while loop returns false..
Explanation:
Hope this will help you...Please mark this answer as the brainliest...
Similar questions
Social Sciences,
5 months ago
Math,
5 months ago
Political Science,
5 months ago
Math,
10 months ago
Science,
10 months ago
Math,
1 year ago
Physics,
1 year ago