How to get started with C and C++?


So here is the guide, how to setup and get started with C and C++ programming language.


To get started with C and C++, you need 3 things
1) Basic Idea of syntax
2) C C++ compiler
3) Last, but not the least, Brain(with logic)
You need to learn the C programming concepts and for practicing them, you need a C complier.
Compiler is nothing but a interpreter which checks your code and convert your code in machine language (1,0) so that can be read by the computer.
Their are bunch of softwares out their, but here, I will suggest you, a small, lightweight, only for C and C++ purpose software, i.e. DevC++.
Its a IDE for C and C++, where you can write the code in it and compile and run it too!
Download DevC++
Just download it like a simple software and create a new source file project and start working with your c and c++ project.
Once you are done, save your project with desired extension, .c (for C) and .cpp (for c++) project.
Then you can compile it by pressing Execute->Compile. And run it by pressing Execute->Run.
You can ask me if you find any query.
Happy Programming!
See you next time();

Related Posts with How to get started with C and C++?