#include int main( void ) { int j; j = 0; while ( j < 5 ) { printf( "j = %d\n", j ); j = j + 1; } printf( "Done. Now j = %d\n", j ); }