Showing posts with label What is Programming?. Show all posts
Programming (often shortened to computer programming) is the systematic process of understanding, designing, and developing the source codes for computer instructions. We can write source codes in various languages such as c, c++, java, php, c# etc. Programs are instructions which is executed by computers and gives desired output. This was the main definition of compute programming.
We describe a simple example of c language:
C Program, that prints "Hello Programmers"
//Header Files (Must in C)
#include<stdio.h>
#include<conio.h>
//Fnction Main()
void main()
{
printf("Hello Programmers");
getche();
}
Some examples of computer languages:
C Programming
C++ Programming
Java Programming
C# Programming
You can download software's and make programs.