Looking for C++ projects for me to tackle...

DarkThinker

Platinum Member
Mar 17, 2007
2,822
0
0
I have a 4 months long internship with a company in a couple of weeks, my main tasks over there will involve C++ development.

I want to make sure I am well prepared for that, so in the meantime I have a 2 weeks break in order to relax, I want to take advantage of that and practice my C++.

So any suggestions on projects to take on?

Thanks
 

aCynic2

Senior member
Apr 28, 2007
710
0
0
To say you'll be working on C++ develpment there is pretty vague. Will you be working on DB development? Graphics? User interface? Networking?

What platform will you be working on? Windows? Unix? Linux? OS/2? DOS?

If you're going to be doing financial type programming, make an arbitray precision BCD math library. Then make a calculator based on that.

BCD is used heavily in business and banking because normal floating point is too inaccurate and that error accumulates over calculations. After a month, the figures could be off by $1000s or $10,000s.

Banks never use floating point.
 

DarkThinker

Platinum Member
Mar 17, 2007
2,822
0
0
Originally posted by: aCynic2
To say you'll be working on C++ develpment there is pretty vague. Will you be working on DB development? Graphics? User interface? Networking?

What platform will you be working on? Windows? Unix? Linux? OS/2? DOS?

If you're going to be doing financial type programming, make an arbitray precision BCD math library. Then make a calculator based on that.

BCD is used heavily in business and banking because normal floating point is too inaccurate and that error accumulates over calculations. After a month, the figures could be off by $1000s or $10,000s.

Banks never use floating point.

Your absolutely correct, I forgot to mention that it will be embedded C++ development mainly.