Jump to content
Clubplanet Nightlife Community

hey hacker


Recommended Posts

I'm trying to learn how to program and I've got MS Visual C++ which I'm using to edit and create my .exe files. But the text I'm learning from is just called "Teach Yourself C++". Are Visual C++ and C++ the same thing? I'm a total beginner at this shit so I'm not sure if I should find a "teach yourself visual c++" text or not.

Link to comment
Share on other sites

Originally posted by heretic909

I'm trying to learn how to program and I've got MS Visual C++ which I'm using to edit and create my .exe files. But the text I'm learning from is just called "Teach Yourself C++". Are Visual C++ and C++ the same thing? I'm a total beginner at this shit so I'm not sure if I should find a "teach yourself visual c++" text or not.

microsoft visual studio (visual c++) is an environment in which to program in the c++ language to develop Windows apps...

it all depends what you wanna do...

if you want to learn how to develop windows apps,

best bet is to get one of the QUE (that's a publisher)

books on developing windows apps using visual c++.

if you want to learn the ins and outs of the Language itself,

ditch visual c++ entirely, spend the time to download

the GNU compiler for c++ (called "gcc" - comes with linux,

but available on any platform) and use it to create some

command-line programs to get you started...

hope that helps.

Link to comment
Share on other sites

c++ is actually a bitch to start from scratch with. Im not saying its impossible but I'd suggest starting with perl or something a little easier. atleast till you get the basics down. Jumping into pointers, passing by reference, link lists, etc without prior knowledge from some high school Basic and Pascal classes would have blown my mind!

Link to comment
Share on other sites

i mention those and not perl or javascript

because, well... they're TYPELESS languages.

they both let you get away with things

that other languages don't.

such as

myvar = "hi there";

myvar = 37;

is perfectly valid in both,

however any 'decent' language

will fail to compile this because

the first instance of myvar is as

a string variable, so setting it

to a numeric later on would be

considered a failure of datatyping.

Link to comment
Share on other sites

Originally posted by thehacker

it all depends what you wanna do...

I've actually got this long-term goal where I want to program my own game for a PC. I've got Bryce, Poser, Lightwave, Genesis and Shadow Realm Model Animator to create my characters and landscapes, and you know I'm gonna have some sick audio for it. So I figured now would be as good a time as any to start teaching myself the basics of programming. I think I'm gonna stick with Visual C++ for this project and see how it goes. If it ends up working, great. If not, well at least I learned something new along the way.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...