I like to use the for(;;) approach because the MSVC++ compiler complains about while loop approach:
void main()
{
while(1) // test.cpp(5) : warning C4127: conditional expression is constant
{
}
for(;;)
{
}
}
emphasized text
|
2 | remove accidentally added junk at end of post | ||
|
I like to use the for(;;) approach because the MSVC++ compiler complains about while loop approach:
emphasized text |
||||
|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
1 |
|
||
|
I like to use the for(;;) approach because the MSVC++ compiler complains about while loop approach:
emphasized text |
||||