What is C++?
C++ is the Programming Language use to create computer programs.
It is a Cross Platform Language means programs made in c++ are able to run on different platforms like Windows/Linux etc with no or little modifications.
It was developed by Bjarne Stroustrup at Bell labs in 1979.
It is a Object Oriented Language (Note:- will discuss about it).
How to Create Programs in C++?
To do that we need :-
Hard way
- Text Editor :- Where you type code. It could be Notepad but VSCode will be better.
- Compiler:- who convert our file into computer's understandable form.
Note:- file extension should be .cpp and compiler will be according to your platform (Windows/Linux etc).
Easy Way
Just download one of these softwares:-
Note:- These are called IDEs (Integrated Development Environment).
Simply put Text Editor + Compiler = IDE.
Super Easy way
There are Online C++ Compilers:-
#Important terms
- Source File :- File you create with text editor.
- Executable File :- File that computer can understand/run directly.
- Compilation :- Process of converting source file into Executable file.
That's it for today.
If you find anything incorrect or know about it let me know in the comments it would be really appreciated.
Bye Guys Have a good day.
Top comments (0)