Home › Forums › C Programming › WhiteSpaces and Blank Lines › Re: Re: WhiteSpaces and Blank Lines
October 5, 2009 at 5:19 pm
#3615
GWILouisaxwzkla
Participant
I’m not sure what compiler your using but the include file ctype.h has a macro called isspace() that can be called on characters , like:
1 2 3 4 5 6 7 | <br /> char ch = cin.get()<br /> if ( isspace ( ch ) )<br /> {<br /> cout << "read a space" ;<br /> }<br /> |
The definition is listed as
The isspace() function returns non-zero if its argument is some sort of space (i.e. single space, tab, vertical tab, form feed, carriage return, or newline). Otherwise, zero is returned.