Minggu, 05 September 2010

Make New Project C with Dev C++


How to make new project C with Dev C++ ? You dont know how to use Dev C++ ? or you have not Dev C++ ?
if you have not Dev C++ you can download that sofwtare Download Dev C++
After you download that software and install it
follow this step to make new project with Dev C++
First of all ,
  • Open Dev C++
  • Klik File 
  • New
  • Select Project
So, will be appear this dialog

  • Select console application
  • Select C project
  • And write you project name in field nam (space is not allowed)



  • And klik ok
  • So, now you must select directory, where you want to save your project. In this example i select directory in drive D:



  • Make new folder
  • Open folder and klik ok
  • So, you window will be appear like this


  • Now you can write your script
  • If you want to debug or run program click these icon



  • It is easy,isn't ?
  • You can make console aplication and GUI application and other with Dev C++

Disadvantages Of C Language

 C does have a few disadvantages. It is a terse language. Since C is a free-form language and does ot impose strict style rules, C programs cand be difficult to understand, especially if the programmer has not made the effrort to make the program readable.

What Advantages Of C Language ?

The C programming language has a number of advantages over other procedural language such as FORTAN, Pascal, and Basic. These include flexibility, efficiency,speed and portability. C is very powerful and flexibel language. This is evident from the fact that C is being used extensively for developing a wide variety of aplication. Some of advantages of the C programming language are listed in the paragraphs that follow

First C program (Hello.c)

You’re probably eager to try your first program in C. To help you become familiar with your compiler, here’s a quick program for you to work through. You might not understand everything at this point, but you should get a feel for the process of writing, compiling, and running a real C program.