Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

What can I do with programming

Name: Anonymous 2011-07-27 0:46

I'm confused about what you can expect to do with programming languages after you learn them. Can someone run through some of the more popular programming languages and what they do?

I'd like to try to teach myself programming, and it'd be easier if I had an idea of what kinds of programming projects I can do in any given language so that I can design one and learn the language in hopes of implementing it.

For instance, in what language can I make simple games?  Where do more advanced graphics come in?

Name: Anonymous 2011-07-27 11:47

>>10
C is for programming systems, but it can still be used for applications. It's the lowest language you can use that doesn't have to be rewritten for different computer architectures.

C++ is a super-set of C, to the point where C++ compilers are backwards compatible with C code. It's main addition is classes which are used as templates for objects. An object is like a dictionary with variables, which are called fields, and functions, which are called methods. The class is just a template for objects. If you were programming a game and you had a class called "baseGun" you would use it to create objects called "uzi","skar", or, "tommy". This way you wouldn't have to rewrite the code for each different gun. Classes are an example of Object Oriented (OO) programming.

C# is Java with hindsight and a C syntax.

Can anyone tell me if I got anything wrong?

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List