 |
Printing chars and their ASCII-code in C - Stack Overflow
2009年9月24日 - How do I print a char and its equivalent ASCII value in C? ... This prints out all acsii values void main() { int i; i=0; do { printf("%d %c \n",i,i); i++; } ...
stackoverflow.com |
 |