Thread: Quiz solution for Chapter 13 in Jumping into C++ is incorrect.

  1. #1
    Registered User
    Join Date
    Apr 2017
    Posts
    11

    Quiz solution for Chapter 13 in Jumping into C++ is incorrect.

    Chapter 13 quiz solution

    3. Which of the following gives the memory address of a variable pointed to by pointer p_a?


    A. p_a;
    B. *p_a;
    C. &p_a;
    D. address( p_a


    In the quiz solution, option C is listed as the correct answer but the correct answer should be A. p_a gives the memory address of the variable pointed to by pointer p_a whereas &p_a gives the memory address of the pointer p_a.

  2. #2
    Guest
    Guest
    You're right! You may want to contact Alex (the author) directly via email, as I'm not sure how often he frequents this forum.

  3. #3
    Registered User
    Join Date
    Apr 2017
    Posts
    11
    I did send an email to Alex, posting it here hoping he would either read it here or respond to my email.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 08-11-2016, 05:50 AM
  2. Replies: 3
    Last Post: 08-04-2016, 05:35 AM
  3. Jumping in C++ Chapter 5 Question 2
    By etricity in forum C++ Programming
    Replies: 2
    Last Post: 04-06-2014, 02:18 AM
  4. Jumping into C++ chapter 7 help
    By DarthOrmus in forum C++ Programming
    Replies: 2
    Last Post: 06-03-2013, 01:48 AM
  5. Replies: 6
    Last Post: 08-20-2012, 07:09 AM

Tags for this Thread