Need help on pointer/addressthis 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 floatsSet a breakpoint at line 82 in your compiler so when you debug it the programs stops there...then lo...
Need help on pointer/addressOne 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...