C programming Interview questions and answers: Convert a string to ASCII in c

C programming Interview questions and answers: Convert a string to ASCII in c

瀏覽:1459
日期:2025-06-12
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])...看更多