 |
C programming Interview questions and answers: Convert a string to ASCII in c
Program to convert string into ASCII values in c programming language: #include int main(){ char str[100]; int i=0; printf("Enter any string: "); scanf("%s",str); printf("ASCII values of each characters of given string: "); while (str[i])
www.cquestions.com |
 |