#include int main(void) { int i = 10; while (i>0) { printf ("i = %d\n", i); i--; } return 0; }