Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Wanting to learn...Come here for details.
#4
are you looking for something starting with C? Or just any language?

Webpage coding is very easy to begin with, but doesn't relate to programs really at all

Batch is also very easy, but not used as much

C++ is pretty easy as well, if you are a good learner and can pay attention.

I recommend Python to first start with because it is very down to earth and is like you are talking to a human compiler I guess rather than speaking machine

Hello world examples:

Python:
Code:
print 'hello world'

C++
Code:
#include <iostream>
using namespace std;

int main()
{
   cout << "Hello World\n";
   cin.get();
   return 0;
}

see what I mean?
Reply


Messages In This Thread
RE: Wanting to learn...Come here for details. - by Reality - 07-27-2010, 04:40 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  At What Age Did You Learn C++ Win 66 18,485 12-11-2011, 02:52 PM
Last Post: Neel

Forum Jump:


Users browsing this thread: 1 Guest(s)