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


Related Posts:

  • C Basic Syntax and CommentsC Basic System In the previous tutorial, you learned to create your first program in C programming language, in the page, you will learn the basic s… Read More
  • Variable and Data Type in C Variable and Data Type in C Put simply a variable is what the program used to store a value in computer's memory Data Type Data Types of v… Read More
  • What is C Programming? What is C Programming???? C  Programming is structured programming languages that was first developed around 1972 and it is still popular today… Read More

0 comments:

Post a Comment