Bold Aesthetic Creative Games

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

C++ Programming

  • C++ Programming Series: What’s next?

    You wanted to get into game programming. You found out that C++ is the real deal. You came here and started reading the first post of the series. You practiced and moved on till the end. Now, you are confused about what to do next? (By the way, it applies to all the enthusiastic people…

    Know More

  • C++ Programming Series: Dynamic Arrays (Part 2, Last)

    Dynamic arrays can be used with functions in exactly the same way as I have told in this post. Just keep in mind that we have to pass the size of the array into the function. Note how I allocated the memory and also, set the value of all the elements in the dynamic array…

    Know More

  • C++ Programming Series: Dynamic Arrays (Part 1)

    Before we get into the dynamic arrays, it is important to understand why we use them and when to use them. Here’s the simplified concept of memory types. The program that we execute stores and works with the data, information and variables (collectively called memory) in the RAM (Random Access Memory). Upon closing the program,…

    Know More

  • 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 3)

    Pointers and Arrays are the same things! This statement might confuse you. How is this possible that pointers and arrays are the same? They never look to be same! This post will clear this point to you. Let’s get started with the code below. What will it print? Will it print the first member of…

    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: Pointers (Part 1)

    In this post, we are going to discuss pointers. But before proceeding, I just want to say that if you really followed all my posts till now then, Congratulations! You learned the basics of programming in general! But there are still a lot of basics in C++! C++ is a very old programming language but…

    Know More

  • C++ Programming Series: File I/O

    In this post, we are going to discuss input and output. No, I am not talking about cout, cin or any other methods we have discussed till now. I am talking about writing and reading files. For working with files, we need to include another header called fstream. There are three classes in it, for file…

    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