#include
Int main ()
{
Char h;
For (h=0; h; H++)
Printf (" % c ", h);
return 0;
}
This is why, why can run normally but no results CodePudding user response:
Because h=0 does not meet the conditions, the cycle time also didn't perform,
H=0 is false, false cycle does not perform, try to put the h=1 CodePudding user response: