Recent Categories
Recent Posts
Post Archive
- April 2023
- February 2023
- January 2023
- November 2022
- September 2022
- August 2022
- April 2022
- October 2021
- September 2021
- April 2021
- February 2021
- January 2021
- December 2020
- October 2020
- July 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- June 2019
- May 2019
- April 2019
- March 2019
- December 2018
- November 2018
- October 2018
- February 2018
- January 2018
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
Catogery Tags
3D Action Android Arrays Art Artist BAC C# Conditions Development Drawing Functions Game Game Announcement GameDev Game Development Game Release gamkedo HomeTeam GameDev Indie Game Indie Game Development itch.io Javascript Learning Memory Painting Pixels Pointers Programming Projects Publishing Scene SDL2 Series Showcase Sprites Statements Strategy Subroutines UI Unity User Input Variables Vector Art Video Game
Connect With Us
-
C++ Programming Series: Complex Conditions
In the previous post, the topic of ‘Using Conditional Statements’ finally, came to an end. But only now, there is something we call ‘complex’. Actually, the word, ‘complex’ means multiple. In fact, the complex is always something, multiple. A single complex object is a combination of multiple simple objects. A simple example of a complex…
-
C++ Programming Series: Using Conditional Statements (Part 7, Last)
In this post, we are going to learn the keyword, break. Are we not familiar with this keyword before? Yes, you got it right. We already learned it when we learned the switch-statement where we use break keyword after every case’s code. The break keyword is only used for stopping loops and ending a switch…
-
C++ Programming Series: Using Conditional Statements (Part 6)
In the previous posts, we learned very beautiful things of which the most beautiful is game development. We have covered if-statement, if-else statement, if-else-if-statement, switch-statement, while-statement and do-while statement but there is another very important and most frequently used conditional statement called the for-statement. It is a bit more complex but neat and short. Following…
-
C++ Programming Series: Using Conditional Statements (Part 5)
Argghhh! When will the topic of conditional statement get over? Well, we have to be patient while learning something. I hope that you might have done the home task of the previous post. Just keep trying to code things up and try to implement small ideas with your skill, you will see yourself learning and…
-
C++ Programming Series: Using Conditional Statements (Part 4)
In the last few previous posts, we learned some of the conditional statements, user input and basic arithmetic. Now, time to use some bits of all of them in one place! Just like if-statements, there is another conditional statement called as while-statement. Below is a very simple example of this: When you run this code,…
-
Duration of Learning Programming
This question is quite impossible to answer with guarantee. There are huge individual variations in how long it takes to pick up programming. Some people learned to program in just a month, some in half a year and others in more than 2 years! Of course, if your only task in life from this moment is to…
-
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…
-
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…
-
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…
-
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…