You are viewing our Forum Archives. To view or take place in current topics click here.
What language should I learn first?
Posted:
What language should I learn first?Posted:
Status: Offline
Joined: Sep 11, 201113Year Member
Posts: 213
Reputation Power: 8
Status: Offline
Joined: Sep 11, 201113Year Member
Posts: 213
Reputation Power: 8
What language should I learn first?
Any suggestions?
Thanks,
-EastCoast
Any suggestions?
Thanks,
-EastCoast
#2. Posted:
Status: Offline
Joined: May 20, 201212Year Member
Posts: 25
Reputation Power: 1
Status: Offline
Joined: May 20, 201212Year Member
Posts: 25
Reputation Power: 1
Ok, so everyone's going to say "depends on what you want to do with programming."
There's various options, such as: C++, C#, Java, etc... My first language was Java and so far is still my favorite.
Here's some links if you want to read up on each language:
C++ [ Register or Signin to view external links. ]
C# [ Register or Signin to view external links. ]
Java [ Register or Signin to view external links. ]
There's various options, such as: C++, C#, Java, etc... My first language was Java and so far is still my favorite.
Here's some links if you want to read up on each language:
C++ [ Register or Signin to view external links. ]
C# [ Register or Signin to view external links. ]
Java [ Register or Signin to view external links. ]
- 0useful
- 0not useful
#3. Posted:
Status: Offline
Joined: Feb 16, 201014Year Member
Posts: 507
Reputation Power: 23
Programming Language or Speaking???
- 0useful
- 1not useful
#4. Posted:
Status: Offline
Joined: Nov 26, 201113Year Member
Posts: 2,210
Reputation Power: 110
You should learn python, it is a simple yet powerful language which I am learning at the moment. It is a great starter language.
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Jan 30, 201113Year Member
Posts: 638
Reputation Power: 25
bux wrote You should learn python, it is a simple yet powerful language which I am learning at the moment. It is a great starter language.
Do not do this.
Hop into C#/C++/Java.
It's not going to be easy but keep trying.
- 0useful
- 1not useful
#6. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 3,612
Reputation Power: 173
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 3,612
Reputation Power: 173
JackM97 wrotebux wrote You should learn python, it is a simple yet powerful language which I am learning at the moment. It is a great starter language.
Do not do this.
Hop into C#/C++/Java.
It's not going to be easy but keep trying.
Why not? Python is a VERY good beginner language, and is generally thought of as an easy language to learn. Also why suggest two interpreted, and generally easy languages, and then a native language with a high learning curve?
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Nov 05, 201113Year Member
Posts: 232
Reputation Power: 11
Status: Offline
Joined: Nov 05, 201113Year Member
Posts: 232
Reputation Power: 11
Learn C++ From:
[ Register or Signin to view external links. ]
His videos are really good, as he has many different tuts on different languages.
C++ hasn't got that much to it for example a hello world app is just:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world lol";
return 0;
}
It may look difficult but if you learn from bucky/thenewboston its really straight forward..
My Inspiration in learning C++ is the fact that Linux was coded in C++/C/C#.
[ Register or Signin to view external links. ]
His videos are really good, as he has many different tuts on different languages.
C++ hasn't got that much to it for example a hello world app is just:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world lol";
return 0;
}
It may look difficult but if you learn from bucky/thenewboston its really straight forward..
My Inspiration in learning C++ is the fact that Linux was coded in C++/C/C#.
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Dec 02, 201014Year Member
Posts: 2,244
Reputation Power: 89
Status: Offline
Joined: Dec 02, 201014Year Member
Posts: 2,244
Reputation Power: 89
C++
It's a powerful language, and I am currently learning it.
It's a powerful language, and I am currently learning it.
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.