"Write a program to copy its input to its output, replacing each string of one or more blanks by a single blank."
I'm assuming by this he means input something like...
We(blank)(blank)(blank)go(blank)to(blank)(blank)(blank)the(blank)mall!
... and output it like:
We(blank)go(blank)to(blank)the(blank)mall!
This is probably easier than I'm making it out to be, but still, I can't seem to figure it out. I don't really want the code... more so pseudo code.
Also, how should I be looking at this? I'm pretty sure whatever program I write is going to need at least one variable
, a while
loop, a couple if
statements, and will use both the getchar()
and putchar()
functions... but besides that I'm at a loss. I don't really have a programmers train of thought yet, so if you could give me some advice as to how I should be looking at "problems" in general that'd be awesome.
(And please don't bring up else
, I haven't got that far in the book so right now that's out of my scope.)
This is what I got:
Pseudo code
C
You can substitute use of
isblank
here if you desire. It is unspecified what characters contrive blank, or what blank value is to be printed in place of others.After many points made by Matthew in the comments below, this version, and the one containing
isblank
are the same.I wrote this and seems to be working.
Using the constraints of not using else or and operators. This code only prints a blank when the blank variable is equal to 1 and the only way to reset the counter is by typing something other than a blank. Hope this helps:
include
/* Write a program that replaces strings of blanks with a single blank */
void main(){ int c, bl;
}