User profile: rssair

User info
User name:rssair
Name:Ryan Stark
Location:Jackson Mi
Website:http://sites.google.com/site/finitepi314
Statistical data
Birthdate:Nov 3, 1992
Gender:Male
Occupation:Student
Skills:C++
History
Joined:
Number of posts:48
Latest posts:

How to store a number in different variables
Another solution is using a union. [code] union split_un { int num; struct { short MSB; ...

Function Libraries?
I believe the common C++ libraries includes this functionality. Here is an example: http://www.cplus...

Variable Declared Globally but has no value?
http://www.cplusplus.com/doc/tutorial/functions2/

Variable Declared Globally but has no value?
The first thing I noticed is that you have itemcost defined twice. Once as a global variable, and ag...

How to store a number in different variables
Try using a bit-wise and. I don't recall the syntax off the top of my head., but it should be someth...