Write a program that skips blanks in the input and prints the input text with
no blanks
at all.
So, for the input,
Once there was a tree…
The output will be,
Oncetherewasatree…
You should skip ALL the white spaces including tabs, if they appear in the
input line
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Write a program that skips blanks in the input and prints the input text with
no blanks
at all.
So, for the input,
Once there was a tree…
The output will be,
Oncetherewasatree…
You should skip ALL the white spaces including tabs, if they appear in the
input line