I want to combine both the for loops into single for loop. How can i do that?
I want to loop through a to z, and A to Z, like so:
char ch;
for (ch = 'A' ; ch <= 'Z' ; ch++ )
{
}
for (ch = 'a' ; ch <= 'z' ; ch++ )
{
}
but using a single loop.
|
I want to combine both the for loops into single for loop. How can i do that? I want to loop through a to z, and A to Z, like so:
but using a single loop. |
||||
| show 4 more comments |
|
I don't personally like this solution, but:
|
|||||||||||||||||
|
Should work -- though please, please, don't inflict this on your fellow developers. |
|||||||||||||||||
|
|
You can do it in a nested loop (two loops, but only one body):
|
|||||||||||||||||||
|
|
Well, the obvious question is why? ...and the second question is do you care about non-ASCII character sets (as your two loops will fail for EBCDIC), but the quick and dirty way of connecting the two is
|
|||
|
|
|||||||||||
|
|
||||
|
|
|
Try this:
|
|||||||
|
|
|||||||
|
|
A straightforward solution is
although I prefer, especially in sensible languages that allow nested functions,
P.S. Kobe, I see in one of your comments that your reason for the loops is to check whether a character is a letter ... but looping is a horrid way to do that. You could simply do
or, considerably better,
(To understand why that cast is needed, read the isalpha man page and the C language standard. This is one of several abominable aspects of C.) |
||||
|
|
This approach is similar to Billy's, but with a slightly less nasty loop-increment statement. I wouldn't mind inflicting this on a fellow dev, though I might write the increment statement as a function to clarify if the increment statement got any more complex:
|
|||||
|
|
It's pointless, just use one for loop. The variables are mainly used as counters, or boundaries for the loop so it knows when to terminate. Just make one loop. Two loops are completely unnecessary. |
|||
|
|
||||
|
|
This will also include a few characters such as '[' and ']'... |
|||
|
|
isalphainstead of doing this yourself. – Billy ONeal Jun 15 '11 at 4:16