User profile: Krahl

User info
User name:Krahl
History
Joined:
Number of posts:63
Latest posts:

Save file as binary data
Hello, I have an Obj object and I've written the following functions to save the data of the object...

File I/O
1. Line 26: [code]infile >> month;[/code] is only accessed if infile is false. It should be the othe...

Reference Variables
Make [code] int i=m; int j=i; int k=j; int m=k; [/code] in to [code] i=m; j=i; k=j; m=k; [/code] ...

vector arguments
Thanks Jim.

Vector Addition Calculator Help
[code]if (Rangle > 90 && Rangle <180) Rangle = Rangle + 180; else ( ...