Search:

Type: Posts; User: fetahi3212

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,816

    Okay I see that the *p_p_int points to the p_int...

    Okay I see that the *p_p_int points to the p_int address, and this **p_p_int points to x, never mind figured it out.
  2. Replies
    2
    Views
    1,816

    Homework typo

    Hello everyone, I was wondering if there is a typo in the solutions for the code below:

    int x = 0;
    int *p_int = &x;
    int **p_p_int = & p_int;
    *p_int = 12;
    **p_p_int = 25;
    p_int = 12;
    *p_p_int...
  3. Replies
    2
    Views
    3,528

    Homework 11 problem 3

    Is question 3 possible to do without vectors because the user can't keep increasing the size of array. Is this question suppose to get you thinking about vectors, but why ask this question in book...
  4. Replies
    1
    Views
    1,245

    Chapter 5- Question 7

    Hello C++ programming community!!

    I was wondering if someone can give me hints and guidelines on my code to make it better-in terms of industry standards. I know there are many answers to this...
Results 1 to 4 of 4