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