cplusplus.com cplusplus.com
cplusplus.com   C++ : Forums : UNIX/Linux Programming : usage of for loop in the place of while ...
  Search:
- -
C++
Information
Documentation
Reference
Articles
Sourcecode
Forums
Forums
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Articles
Lounge
Jobs

-

question  usage of for loop in the place of while loop

divya balachandran (3)
how to use for loop instead of while loop in reading a file ?
|
firedraco (657)
For fun:
1
2
3
for(;/*while condition*/;) {
     //do stuff
}


Realistically: Why would you want to do that?
| Last edited on

This topic is archived - New replies not allowed.
Home page | Privacy policy
© cplusplus.com, 2000-2008 - All rights reserved - v2.2
Spotted an error? contact us