Bold Aesthetic Creative Games

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

Variables

  • C++ Programming Series: Structures and Data Types

    During that non-blogging time, I learned one thing: Always finish what you have started. And so, here I am continuing my C++ Programming Series. C++ got primitive data types like integers, floats and doubles. They are called primitive for a reason. We can create our own data types by combining other data types. We can…

    Know More

  • C++ Programming Series: Pointers (Part 4, Last)

    Too busy! Too busy! Don’t expect regular and weekly posts from me. In the previous post, we discussed that pointers are actually arrays! This post is to discuss more pointers, arrays and the arithmetic that can be done with them. We can do addition and subtraction with pointers. Multiplication and division are not possible! Here…

    Know More

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

    I believe that my series is getting complex with every post being published! This has to be done because we should also be getting more complex and more logical with every topic we discuss. Today’s topic is References. Before proceeding on, let us discuss a few problems with functions. The first one is that we…

    Know More

  • C++ Programming Series: Arrays

    Previous two posts are (or just looks like) useless and really, are not interesting. But in this post, you are going to get the reward! Yes, a reward! You are going to learn my favourite thing, the favourite in the way that it makes life with programming very easy! We call it: Arrays. Before proceeding,…

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