Computer Science, asked by yesh123, 9 months ago

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 anindyaadhikari13
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