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 int main() { char c; int i; printf("Enter a Integer: "); scanf("%d", &i);

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!