Learn Dev C++
Learn one of the most powerful programming languages in the world and become a rockstar developer. Why Learn C? 40 years ago, a Ph.D. Student by the name of Bjarne Stroustrup tinkered around with the C programming language, which was and still is a language well-respected for its flexibility and low-level functionality. How to use Dev-C Introduction Dev-C is a full-featured integrated development environment (IDE), which is able to create Windows or DOS-based C/C programs using the Mingw compiler system (included with the package), or the Cygwin compiler.
-->The aim of this Get Started series is to teach you how to write a desktop program in C++ using Win32 and COM APIs.
In the first module, you'll learn step-by-step how to create and show a window. Later modules will introduce the Component Object Model (COM), graphics and text, and user input.
For this series, it is assumed that you have a good working knowledge of C++ programming. No previous experience with Windows programming is assumed. If you are new to C++, you can find learning material at the Visual C++ Developer Center. (This resource may not be available in some languages and countries.)
In this section
Topic | Description |
---|---|
Introduction to Windows Programming in C++ | This section describes some of the basic terminology and coding conventions used in Windows programming. |
Module 1. Your First Windows Program | In this module, you will create a simple Windows program that shows a blank window. |
Module 2. Using COM in Your Windows Program | This module introduces the Component Object Model (COM), which underlies many of the modern Windows APIs. |
Module 3. Windows Graphics | This module introduces the Windows graphics architecture, with a focus on Direct2D. |
Module 4. User Input | This module describes mouse and keyboard input. |
Sample Code | Contains links to download the sample code for this series. |
- C Programming Tutorial
- C Programming useful Resources
- Selected Reading
C programming is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis M. Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system. C is the most widely used computer language. It keeps fluctuating at number one scale of popularity along with Java programming language, which is also equally popular and most widely used among modern software programmers.
C programming language is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Software Development Domain. I will list down some of the key advantages of learning C Programming:
Easy to learn
Structured language
It produces efficient programs
It can handle low-level activities
It can be compiled on a variety of computer platforms
C was invented to write an operating system called UNIX.
C is a successor of B language which was introduced around the early 1970s.
The language was formalized in 1988 by the American National Standard Institute (ANSI).
The UNIX OS was totally written in C.
Today C is the most widely used and popular System Programming Language.
Most of the state-of-the-art software have been implemented using C.
Today's most popular Linux OS and RDBMS MySQL have been written in C.
Just to give you a little excitement about C programming, I'm going to give you a small conventional C Programming Hello World program, You can try it using Demo link.
C was initially used for system development work, particularly the programs that make-up the operating system. C was adopted as a system development language because it produces code that runs nearly as fast as the code written in assembly language. Some examples of the use of C are -
Operating Systems
Language Compilers
Assemblers
Text Editors
Print Spoolers
Network Drivers
Modern Programs
Databases
Little Snitch lets in you to locate unauthorized connection attempts-oriented tool is for outbound visitors.
Language Interpreters
Utilities
This tutorial is designed for software programmers with a need to understand the C programming language starting from scratch. This C tutorial will give you enough understanding on C programming language from where you can take yourself to higher level of expertise.
Dev C++ Online
Before proceeding with this tutorial, you should have a basic understanding of Computer Programming terminologies. A basic understanding of any of the programming languages will help you in understanding the C programming concepts and move fast on the learning track.