📜  在 C++ 代码示例中获取字符串的 ascii 值

📅  最后修改于: 2022-03-11 14:44:56.819000             🧑  作者: Mango

代码示例3
int main()
{
 char *s="hello";
 while(*s!='\0')
  {
  printf("%c --> %d\n",*s,*s);
  s++;
  }
 return 0;
}