🌈 搜索
📅  最后修改于: 2022-03-11 14:44:56.819000             🧑  作者: Mango
int main() { char *s="hello"; while(*s!='\0') { printf("%c --> %d\n",*s,*s); s++; } return 0; }