954,089 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Tips learning a programming language?

Hi, im really interested with this 'programming stuff'. I got into it by reading a thread called 'Virus Programming'. (i read all of it )
Do i have to be in uni to learn a programming language like c++ or c or VBN( i read the names of those languages somewhere)? I have no previous experience...just wanted to know if learning langauges and how to write it was possible to do with no tuition or help from others...could i just read forums and find good links? or....should i just not bother till i learn more at school or something

lol....im not 10yr old :)
Thnx

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 
lol....im not 10yr old :)


seriously im not

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 
Evenbit
Junior Poster
140 posts since Mar 2005
Reputation Points: 99
Solved Threads: 5
 

TY very much :) ill start reading

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

Dev-C++ is a good c and c++ compiler, and its free

>>I got into it by reading a thread called 'Virus Programming'
please, please do not tell us you want to do that. If you do we will have to ban you for life.:mad:

Ancient Dragon
Retired & Loving It
Team Colleague
30,040 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,341
 

lol no, im not into virus making...i just read a thread here that had some interresting talk and people...it was called 'Virus Programming'
thnx for the program :D

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

If you like C or C++, look at the recommended books in that forum.
Another compiler: Code::Blocks.

manutd
Junior Poster
101 posts since Nov 2006
Reputation Points: 12
Solved Threads: 1
 

>i just read a thread here that had some interresting talk and people...it was called 'Virus Programming'
I'm sure it was interesting if it's the thread I'm thinking about. ;)

>Do i have to be in uni to learn a programming language
Most certainly not! Anyone with a computer and basic skills using it can learn how to program.

>just wanted to know if learning langauges and how to write it was possible
>to do with no tuition or help from others.
No tuition, yes. No help, that's harder. I learned with very little help, and it's a long, difficult, frustrating path. Fortunately, help can be found for free on forums such as these.

>could i just read forums and find good links?
Yes, though it's highly recommended that you get a good book as well.

>should i just not bother till i learn more at school or something
No! If you're interested in programming, the sooner you start learning the better. Programming is very hard, but it's also very accessible. Most of the best programmers are almost completely self-taught.

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

I am currently reading http://www.pragsoft.com/books/CppEssentials.pdf and the Help file in Dev-C++. Do i need to learn 'assembly language' before c++? or VB.Net?

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

Coool, thnx Narue...and you were like one of the main posters on that 'Virus Programming' thread!
Do you have any suggestions for a book to buy? lol, i kinda wona get into it now :D

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

>and you were like one of the main posters on that 'Virus Programming' thread!
Then it was the thread I was thinking of. That was a fun one. I actually remembered it being fun despite my awful memory. ;)

>Do you have any suggestions for a book to buy?
You can get a free ebook on C++ from MindView . I honestly haven't read the first volume (but it's highly recommended) and I enjoyed reading the second volume very much. However, I always recommend learning C++ from Accelerated C++ because it's short and sweet, and teaches C++ as it should be taught.

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

This is really confusing.....is C++ what i should start learning? or do i need to learn something b4 i get onto C++ or C# .... Introductions are SO hard to read

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

heyi just wrote and comiled with Dev-C++

#include

int main()
{
printf("This is output from my first program!\n");
return 0;
}


----
they said that its meant to come up with the message...but all it did was flash..i didnt see the message :(
is that meant to hpn?

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 
heyi just wrote and comiled with Dev-C++ ---- they said that its meant to come up with the message...but all it did was flash..i didnt see the message :( is that meant to hpn?


That's because DevC opens a window to run the program, runs it, and when the program ends, closes the window. Change your code to this:

#include <stdio.h>

int main()
{
    printf("This is output from my first program!\n");
    getchar();
    return 0;
}

Please use Code Tags , not colors. And please read this about using computer-speak.

WaltP
Posting Sage w/ dash of thyme
Moderator
10,492 posts since May 2006
Reputation Points: 3,348
Solved Threads: 943
 

cool, thnx man

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

>is C++ what i should start learning?
Probably not. I assumed you wanted to learn C++ from your posts. Python might actually be a better introduction to programming (it's more forgiving), but eventually you will want to learn C++.

Narue
Bad Cop
Administrator
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
 

cool, ok...thnx :)

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 
Do i need to learn 'assembly language' before c++? or VB.Net?

N-o-o-o. Assembly language is probably the last language you will learn. It also happens to be the least forgiving and least user-friendly. Happiness ;) It is best used in low level, OS base type programming (aka in situations other languages just won't do).

manutd
Junior Poster
101 posts since Nov 2006
Reputation Points: 12
Solved Threads: 1
 
Assembly language is probably the last language you will learn.

I'd recommend RPG II asthe last languave you want to learn! :twisted: At least assembly is useful.

WaltP
Posting Sage w/ dash of thyme
Moderator
10,492 posts since May 2006
Reputation Points: 3,348
Solved Threads: 943
 

Cool, thnx...something that i read made me think that assembly was easier lol .... im trying to learn Python at the moment :D ... from there ill move on to C++ :lol: ...

Whats up with Perl? is it easier than Python? is VBScript hard to learn? After learning Python could i move on to VBscript? or Python> C> C++> VBScript?
thnx

WoBinator
Newbie Poster
22 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
 
View similar articles that have also been tagged: