Computer Science Unit 1: Integrated Development Environment (IDE) | C Language | Lecture # 2
Integrated Development Environment (IDE)
A software that provides a programming environment to facilitate programmers in writing and executing computer programs is known as an Integrated Development Environment (IDE).
Some of the many available IDEs for C programming language are:
1) Visual Studio
2) Xcode
3) Code:Blocks
4) DevC++
Figure 1.1 main screen of Code::Blocks IDE
Text Editor
A text editor is a software that
allows programmers to write ad edit computer programs. All IDEs have their own
specific text editors. It is the main screen of Text editor Code::Blocks
Figure 1.2: Text editor in
Code::Blocks
Figure 1.2 shows a basic C language program written in the text editor of IDE Code Blocks. When executed, this program displays Hello World! on computer screen. We have to save our file before it can be executed. We can click on the build and run button to see the program's output.
Here you can watch how to write, save, build, run 1st program code in C Language.
Comments
Post a Comment