Answers for "how to get string ascii value in c++"

C++
0

get ascii value of string in C++

int main()
{
 char *s="hello";
 while(*s!='')
  {
  printf("%c --> %dn",*s,*s);
  s++;
  }
 return 0;
}
Posted by: Guest on December-29-2020

Code answers related to "how to get string ascii value in c++"

Browse Popular Code Answers by Language