Saturday, 23 January 2021

Install & Configure VS Code With C Compiler; C language Tutorial #3



In this tutorial we are going to discuss about ide along with compiler and the difference between the two. We will also see the installation of these two in windows as most of the viewers are using windows. I will also show you how to set the path for compiler and by the end of the tutorial you will have an ide linked with a compiler that will help you write your programs efficiently. 

What is an IDE?

IDE stands for Integrated development environment. It is nothing more than an enhanced version of a text editor that helps you write more efficient and nicer code. It helps to differentiate different parts of your codes with different colors and notifying you if you are missing some semicolon or bracket at some place by highlighting that area. A lot of IDEs are available such as DEVC++ or Code Blocks but we are going to use VS Code for this tutorial series.

Compiler: 

A compiler is used to run the program of a

No comments:

C Programming Exercise 1 - Multiplication Tables: C Tutorial #8

This is the first exercise of C programming tutorials. This C programming series contains many exercises that will help you to become a gr...