How To Install Dev C++ in Windows 10 For Learn C Language – In this post, we learn about dev c++ compiler. Dev-C++ is a free full-featured integrated development environment distributed under the GNU General Public License for programming in C and C++.
The name compiler software is primarily used for programs that translate source code from a high-level programming language to a lower-level Programming language to create an executable program.
Topic Cover in Post:
How To Install Dev C++ in Windows 10 For Learn C Language
C Language is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system. C is the most popular widely used computer programming language.
What is Dev C++ IDE Compiler
Dev C++ is written in Delphi. It is bundled with, and uses, the MinGW or TDM-GCC 64bit port of the GCC as its compiler. Dev C++ is the most popular compiler used in C or C++ Programming Language. Originally released by Bloodshed Software, but abandoned in 2006, it has recently been forked by Orwell, including a choice of more recent compilers.
Features of Dev C++ IDE Compiler
- TDM-GCC 4.9.2 32/64bit
- Syntax highlighting
- Code completion
- Code insight
- Editable shortcuts
- GPROF profiling
- GDB debugging
- AStyle code formatting
- Devpak IDE extensions
- External tools
Download the Latest version of Dev c++ For Windows PC
Install Dev C++ in Windows 10 Step By Step-
- Download the Latest version of Dev c++.
- Install
- Run
- Choose Language (English / According you understand)
- Follow Some steps- Click File>>New>>Project>>Choose Console application and choose c object and then Click Ok.
- Enjoy Coding.
Basic Structure of C Programming First Hello program in C language?
[code language=’C’]
#include // header file
int main() // main function program starting function
{
printf(“Hello, World!”); // printf() displays the string inside quotation
return 0; //end function or return value
}
[/code]
the output of this program
[code language=’C’]
Hello World!
[/code]
Share This Post With Your Friends
See Also: