In the last blog we went over the If Statement Guessing Game! Check it out first! Are you new here? Start at the beginning, Intro to C! In the previous blog we had this code: The problem here is that we are calling return 0 twice. This works in this situation, but what if we wanted to continue […]
c programming
C Programming Tutorial 50 – If Statement Guessing Game
In the last blog I spoke of Relational Operators. Check the one out first! Are you new here? Start at the beginning, Intro to C! In this blog we are going to be creating an if statement with relational operators. We want to create an application that gives the user one try to guess a number between […]
C Programming Tutorial 49 – Relational Operators
In the last blog I spoke of Good Coding Practices. Check the one out first! Are you new here? Start at the beginning, Intro to C! In the previous videos we have worked with if statements that work with strictly true or false values. We’ve used both bool variables and we’ve also replaced variables with actual values […]
C Programming Tutorial 48 – Good Coding Practices
In the last blog I spoke of How to Write If Statement with Boolean Variables. Check the one out first! Are you new here? Start at the beginning, Intro to C! This video is going to be a very short and to the point video that explains some good habits that you should have when you are […]
C Programming Tutorial 47 – How to Write If Statement with Boolean Variables
In the last blog I spoke of how if statements work. In this blog we are going to write a very simple if statement with a bool variable! Remember that we have to have #include <stdbool.h> in our code. Are you new here? Start at the beginning, Intro to C! This works and all and you can see […]
C Programming Tutorial 46 – If Statement
Did you read the last blog? Go read intro to logic! Are you new here? Start at the beginning, Intro to C! The if statement is the most foundational flow control statements in programming. You are literally going to come across the if statement in probably every program you see or write. Make sure you watch the previous […]