cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
what does this mean in c++
what does this mean in c++
Dec 3, 2008 at 7:37pm UTC
a786
(1)
what does this mean in c++:
for (;;)
Dec 3, 2008 at 7:54pm UTC
helios
(17607)
It's the same as
while
(1)
(An infinite loop.)
Topic archived. No new replies allowed.