0
How to make a paragraph using ascii value in c?
I need small Sample program
1 Réponse
0
You can get ASCII value of a char by casting it to int. With a loop iterating the string, you can print the ASCII value of each char.
I need small Sample program