Wednesday, November 26, 2014

What is C Programming?

  No comments    
categories: 
What is C Programming????
C  Programming is structured programming languages that was first developed around 1972 and it is still popular today.
One of reasons that contribute to the popularity of C is machine independence. Software developed with C can run on many
different hardware and software platforms.

The first Programming!!
In this C programming language tutorial, you will start with the basic knowledge required to get up and running with C.
Then you will learn some basic and advanced concepts of C programming language (along with workable example and samples projects) 
including C Variables and data types, operators and expressions, conditional statements or decision making, loop or repetitions, function, array, structure, string manipulation methods, memory management, file stream and sample program source code.

To develop software with C programming language, ou will need one of C editors, In this tutorial I recommend you to download and install Dev-C++ 5.1 or the latest version.




How to Create New Projects!!!
After install it ready 

Now open Dev-C++ editor, create a new empty console project of you choice and type the C code below.





#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) 
{
printf("Hello World\n");
system("pause");
return 0;
}


This is a Result 



 Free Soft Here about Dev v5.1


0 comments:

Post a Comment