Bold Aesthetic Creative Games

An Indie Game Studio Developing Bold, Aesthetic & Creative Video Games

break

  • C++ Programming Series: Using Conditional Statements (Part 7, Last)

    In this post, we are going to learn the keyword, break. Are we not familiar with this keyword before? Yes, you got it right. We already learned it when we learned the switch-statement where we use break keyword after every case’s code. The break keyword is only used for stopping loops and ending a switch…

    Know More

  • C++ Programming Series: Using Conditional Statements (Part 3)

    In the last two previous posts, you got through the if, else and else-if-statements. The uncertain point is the difference between two if-statements and if-statement with an else-if-statement. Two if-statements are not connected to each other. They don’t have any relation with each other. The compiler has to pass through all of these statements even…

    Know More