User profile: aarnold404

User info
User name:aarnold404
Name:Adam
Location:Lexington, KY
Statistical data
Gender:Male
Occupation:Other
Skills:C++
Pascal
Javascript
History
Joined:
Number of posts:23
Latest posts:

Need help on pointer/address
this would evaluate to the dereferenced value at the address of the pointer. if nPtr is a pointer.....

reading data from a file works until trying to read floats
Set a breakpoint at line 82 in your compiler so when you debug it the programs stops there...then lo...

Need help on pointer/address
One operation, reverses the other... int *nPtr2 = &(*nPtr) is the same as int *nPtr2 = nPtr there ...

Need help on pointer/address
& is the Address of operator...so int *nPtr; // Integer Pointer int someInt; nPtr = &someInt...

program skips over user input?
anytime you use a getline(cin,strName) ... put a cin.ignore(80,'\n'); right after. This effectively...