Bold Aesthetic Creative Games

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

Address

  • 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