Tutorial 5 Reading and Writing to Files in Language C In this tutorial, I will combine what I taught in the tutorial 3 about for loops to show you how you can actually save the results to a text file! What you will learn: How to open a file in language C How to Read […]
Learn Language C from Zero in Video
Start writing and compiling very simple code in C language with those video tutorials. I'll start with really basic stuffs before going to advanced concepts.
Make sure to install the gcc compiler before starting with the tutorial 1 by following the procedure indicated in this article
Tutorial 4 – If and If Else Conditions- Language C from Zero
Tutorial 4 – If and If Else Conditions in Language C What you will learn here: How to use the conditional instructions “if” to execute a special action in function of specific variables How to chain several “if” conditions use “If Else” Prerequisite: You need to have the GCC compiler installed Follow the process written […]
Tutorial 3 – For Loops and Math functions in language C
Tutorial 3 – For Loops and Math functions in Language C What you will learn: How to implement a for loop from i=0 to X to execute an instruction X times How to use the math functions which are already implemented in the Language C How to use the type of variable “double” Prerequisite: You […]
Tutorial 2 – Declaring and Printing Integer variables in C
Tutorial 2 – Declaring and Printing Integer Variables What you will learn: how to declare an integer variable how to print an integer variable through the printf command Here you have the principal types in C language: Type Name Minimum Maximum signed char -127 127 int -32767 32767 long -2147483647 2147483647 float -1×1037 1×1037 double […]
Tutorial 1 – Hello World in C
What you will learn in this video: – The basic syntax of a c program – Usage of the printf function – How to compile code through the terminal Prerequisite: You need to have the GCC compiler installed Follow the process written in this article to install it on Windows 10: How to install the […]
How to install the C language GCC compiler on Windows
On Linux, gcc is install by default and you can start to compile and execute C language code almost right away! That’s not the case on Windows… I have been struggling with how to do the same thing on Windows 10 for some time, but I finally succeeded Here’s a video in which I explain […]