Bold Aesthetic Creative Games

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

Primitive Types

  • C++ Programming Series: Pointers (Part 2)

    In the previous post, we learned how to get the memory address of a variable and how to define a variable that holds the memory address i.e pointer. Suppose that there is a variable of the type int called number. We initialize it with value equals to 10. Now, suppose that it has a memory…

    Know More

  • C++ Programming Series: Basic Arithmetic

    We discussed many things till now. We discussed printing the variables, primitive types, user input and some conditional statements. What we should discuss right now is the basic arithmetic. It is very simple to do primitive calculations with primitive types. We will only work with integers here. But it will be applicable to all other…

    Know More

  • 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: 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