Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

NFC Institute of Engineering&Fertilizer

Research Faisalabad

Department of Electrical Engineering


Second Semester
Course Title:
Programming Fundamentals
Topic:
Lab Assignment
Submitted To:
Engr. Salman Arain
Submitted By:
Hafeez Ali
Roll.No:
18-ELE-43
Reg.#:
2018-UET-NFC-FD-ELECT-43
Lab.no.1
Introduction to IDE Environment for C Language
Task#1
What are the different features of Dev C++ IDE environment?
IDE (Integrated Development Environment):
An integrated development environment (IDE) is a software application that provides comprehensive
facilities to computer programmers for software development. An IDE normally consists of at least a source
code editor, build automation tools, and a debugger.

Dev-C++ is a free full-featured integrated development environment (IDE) distributed under the GNU
General Public License for programming in C and C++. It 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++ can
also be used in combination with Cygwin or any other GCC-based compiler.
Dev-C++ is generally considered a Windows-only program.

Features:
Some important Features of Dev C++ IDE environment are given as:
 Support GCC-based compilers
 Integrated debugging (using GDB)
 Project Manager
 Customizable syntax highlighting editor
 Class Browser
 Code Completion
 Function listing
 Profiling support
 Quickly create Windows, console, static libraries and DLLs
 Support of templates for creating your own project types
 Makefile creation
 Edit and compile Resource files
 Tool Manager
 Print support
Task#2
Write a source code of the program that prints “Welcome to NFC”?
Input:

Output:

You might also like