Jump to content

Introduction to C++?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
rockinaway

rockinaway

    Newbie

  • Members
  • Pip
  • 4 posts
Is C++ the software that is used to make programs like Word and Excel? Is it used to make games? If not which language is?

Are there any good starting tutorials for C++ so that I can get going?

#2
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
It can be hard to say if Word, Excel, or any other application is made in X language. But yes, in C (or C++) you can make such application, or games, or whatever you want. It's almost possible to do everything with C and C++.

If you're starting with C (or C++), then start out like "I want to make a whole game, give me a tutorial!" You need to start from the ground, and work you way up. If you want to make a game, then first learn the basics. Later you can learn something about graphics, 3D or maybe 2D. Next you need the AI, gameplay, and some networking as well, if it's a multiplayer game.

If you want to start, then this tutorial is pretty good for beginners.
C++ Language Tutorial

#3
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
For a list of programs written in C++, check out this page. It includes almost everything produced by Microsoft, numerous games (including Blizzard, EA, and Id software products), etc.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#4
rockinaway

rockinaway

    Newbie

  • Members
  • Pip
  • 4 posts
Thanks, yeah I wanted to know from the basics :)