Question: Simple C Program for converting a list of positive numbers separated by white spaces (spaces, newlines, tabs) to output a list of ASCII characters. So
Simple C Program for converting a list of positive numbers separated by white spaces (spaces, newlines, tabs) to output a list of ASCII characters.
So far I have
#include
printf("The numerical value of %d = %c ", i, i); return 0; }
However I need to be able to input unlimited characters until EOF and I need to output A list of characters.
So if I had an Input of 97 72 101
The output should be: "aHe"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
