Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #22.6K
Ranked #4K
~866 People Reached
Favorite Tags

5 Posted Topics

Member Avatar for metdos

the 'C' code is passing a pointer to the value in the first call, and the actual value in the second call. (In the first case, you can actually change the value in the function.) the 'C++' code I am imagining that the function declaration says that the first parameter …

Member Avatar for m22
0
345
Member Avatar for gretty

you;re passing the 'stats' BY VALUE. the only reason you see the correct output in the second case is because the 'read' stats is reading into it's own stats and passing BY Value it's copy of stats to the display routine. neither 1 or 2 is probably doing what you …

Member Avatar for m22
0
111
Member Avatar for gav.clark88

1) Master's? : Yes. 2) Java Dev? : Hmm. Knowing what is "going on" around the Java is important too. With a BS, you'll know how to push the bits around. With a Master's you want to learn WHY the bits are being pushed. During your Master's make sure you …

Member Avatar for gav.clark88
0
189
Member Avatar for lotrsimp12345

the contents of the input file will not change. you have read information from the input file. changing the information you read will not then change the information back in the input file.

Member Avatar for m22
0
91
Member Avatar for derekc4

The End.