Which Programming Language Should I learn First?

Programming languages are the languages which are mainly used to develop computer program(s). In this field of computer programming, many programming languages have taken place to provide the better result for different kinds of computer program(s).

When I started learning computer programming, a great question was always in my mind and I think the same question may arrive in every new learner in the field of computer programming. The question is “Which programming language should I start with? ” Or  ” which programming language should I learn first? ”.

I was so fascinated about computers and at that time I felt that I should learn each and every programming language but the same question again arrived in my mind “Where should I start from?”.

I tried to find an answer to the question, I started reading about programming languages, their types, the way different programming languages work, etc; And at a particular point I found an answer and that was " C programming Language ".

The C programming language is the best idea to start as learning programming languages, it is simple and easy to understand and you can get the knowledge about the basics of different programming languages as well.

I started learning C programming language and typed my first C program "Hello World " on the screen.

The code was like:

#include<stdio.h>
#include<conio.h>
void main()
{
printf("Hello world");
getch();
}

The Output:



And that's how I started learning to program.

Comments