Switch Case LoopRather you could do this: using if instead of switch. [code]for(int i=0; i<10; i++) { if(item...
Stop a certain part of loop from repeatingYou can use the [code]continue[/code] statement. [code]int main(int argc, char** argv) { bool ...
How to open IE explorer?I think your post is operating system specific (IE involved -- an external application in windows). ...
Switch in a Switch problem1. It is [code]case 1: [/code] not [code]case1:[/code]. Leave space between the keyword and 1. 2. A...
heap and stackhttp://www.learncpp.com/cpp-tutorial/79-the-stack-and-the-heap/
This user does not accept Private Messages