Save file as binary dataHello, I have an Obj object and I've written the following functions to save the data of the object...
File I/O1. Line 26: [code]infile >> month;[/code] is only accessed if infile is false. It should be the othe...
Reference VariablesMake [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 argumentsThanks Jim.
Vector Addition Calculator Help[code]if (Rangle > 90 && Rangle <180) Rangle = Rangle + 180; else ( ...