07-27-2010, 04:40 PM
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:
C++
see what I mean?
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?