Bold Aesthetic Creative Games

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

bilalch213

  • C++ Programming Series: User Input and Comments

    In the previous post, we talked about user input. Well, there’s no post about user input until now. A very simple user input program is given below: This program will get the input from us and then, outputs our input. There are many new things to notice: This time, we also included string in our…

    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

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

    In the previous post, we learned some conditional statements. Now, we are going to learn more about them. And later on, we will learn even more… But for now, just check an example of double if-statements again: Everything looks fine in the above code and also compiles fine. It runs fine as well. But the…

    Know More

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

    Conditional statements in a program are such statements which control the progression of our program. We must understand the fact that our code is always executed from the start to the end linearly. Following is a conditional statement: Here, if shows the condition that is typed after it in round brackets. In the curly brackets…

    Know More

  • C++ Programming Series: Primitive Types

    In the previous post, we discussed variables and a primitive type called int. Primitive types are the basic types from which other complex things are derived. Like int, the following are some other primitive types. They have different sizes and they are calculated in bytes which is a term defined for measuring memory in computers.…

    Know More

  • C++ Programming Series: Hello World and Variables

    If you already read the previous post and installed Microsoft Visual Studio Express Edition, you can just open it and somewhere, you will see New Solution. Just set a new one and add an empty cpp or source file to it. In this cpp file, copy and paste that code below to it and then,…

    Know More

  • C++ Programming Series

    From this day onward, I am going to do C++ Programming Series. It will be short and useful. It will be more revising in nature than learning and so, it will be useful for those who are beginners as well as those who are not beginners to C++ programming. Requirements: Some experience of using computer…

    Know More

  • Hello World!

    cout << “Hello World!” << endl; Hello there, I am Bilal Ahmad Cheema and this blog is all about programming! Learn C++, create tiny programs and if you encounter some errors, ask me and the community for a fix. Its about innovative programs which are made using some easily understandable colorful logic! It’s about the…

    Know More