PDA

View Full Version : So I've learned the basics of C++.... What now?


ShishKabab
June 8th, 2007, 06:24 PM
I learned the basics of C++ a few months ago.... I like the language... Does anyone know a simple C++ project could join to gather some experience?

Biased turkey
June 8th, 2007, 07:56 PM
You could learn how to program graphics, it's fun.
The most popular graphics C C++ libraries are using SDL
http://www.libsdl.org/index.php

There are a couples of demos to learn from.
Have fun.
If you want a book about graphics using SDL I highly recommend "Programming Linux games" from No starch press.

pmasiar
June 8th, 2007, 10:20 PM
search sourceforge by language. but maybe before that you want to do some simple projects (but more work that your homeworks).

Projects for a week or two each. Check wiki in my sig for suggestions

Toxe
June 9th, 2007, 09:14 AM
If you are not sure what to do now: try programming a Tetris clone. No, really. Well, if you are into games, that is.

kostkon
June 9th, 2007, 10:43 AM
To be more Ubuntu specific, go to launchpad.net and see if you can participate in a project there...

ShishKabab
June 9th, 2007, 12:02 PM
Thnx for your replies!

I'll check the sources you gave me.

@Toxe: Hmm.... I think a Tetris clone is too complicated right now, because I can imagine games are very complicated to program in C++.

thornmastr
June 10th, 2007, 07:20 PM
Get involved with Project Euler. It will challenge yoiu as well as your skill level in a number of areas. Good Luck.


Thorn.

slavik
June 10th, 2007, 08:26 PM
implement the basic data structures that exist in STL (stack, list, queue)

make each store things in an array and then node based ...