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
~189 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for DaMaskMan2

. What wrong with the following code segment? int* = needle; needle = new int; *needle 100; cout << *needle; needle = new int; *needle = 32; cout << *needle;

Member Avatar for phfilly
0
64
Member Avatar for DaMaskMan2

What wrong with the following code segment? int* birdDog; int* germanShortHair; birdDog = new int; germanShortHair = birdDog; *birdDog = 42; cout << *birdDog; delete birdDog; cout << *germanShortHair;

Member Avatar for Ancient Dragon
0
68
Member Avatar for DaMaskMan2

What does the following code do? int number; int& atlas = number; number = 212; atlas++;

Member Avatar for mrnutty
0
57