How to use a for loop to print out the capital letters in the ASCII table, (do not use an array, function and pointer to write, haven't learned),
CodePudding user response:
A for loop, with less than what you said that, should be knowledge you've learned
For (char c='A'; C<="Z"; C + +)
Printf (" % d ", c);
CodePudding user response:
for (char c='A'; C<="Z"; C + +)
Printf (" % % d \ n "c, c, c);
CodePudding user response: