+ 6
What is IDE ?
What does this IDE (Integrated Development Environment) do?
11 Respostas
+ 9
Basically it's just a text editor. But Ides have features that can help you code easier. Like syntax highlights, auto correction, etc. And more advanced ides like visual studio have inteliSence. Something that scans the code and highlights syntax errors or even gives you suggestions while you code.
+ 7
integrated development environment
+ 2
it's an enviroment to make it easier to code on your programming language, like a text editor with bonus things. It can have a compiler/interpreter integrated, auto-complete tags, etc
+ 2
Provides tools for writing source code. you can use code block, trubo for c++.
+ 2
integrated development environment
+ 2
An IDE is like a text editor; it lets you write and save code, and organise your projects more easily. It will also help you compile and run the code you write.
+ 2
For building any Software in any language you need development tools. For Example, you need an editor to type the program, a compiler to compile the program, a debugger to detect, a analyze and eliminate bugs in the program etc... Instead of using these programs separately, today it is common the bundle all of them together in an Integrated Development Environment (IDE).
One Such IDE that is very popular .....
Visual Studio
NetBeans
Eclipse
+ 2
Integrated Development Environment
Its a software application that provide some facilities for programmers
it consist of auto completion of code
a text editor etc
visual studio
netbeans
eclipse
etc...
+ 2
IDE is:
editor , debuger and compiler
in Linux .. you can code C++ without IDE ..
just gEdit and gcc and a dubuger
+ 1
IDE stands for integrated development environment. It is basically the collection of tools for the creation or development of any application or software. It comprises of editor, compiler etc.
+ 1
An integrated development environment (IDE) is a Software application that provides comprehensive facilities to computer programmers for software developement.
_An IDE normally consists of a source code editor, build automation tools and a debugger.
_Most modern IDEs have intelligent code completion.