Search:

Type: Posts; User: grumpy

Search: Search took 0.06 seconds.

  1. Replies
    5
    Views
    947

    That "int" on line 3 can be left out (it's...

    That "int" on line 3 can be left out (it's optional in C) but doing so is often considered to be bad practice.
  2. Replies
    5
    Views
    947

    My guess is that your "trouble" concerns the...

    My guess is that your "trouble" concerns the variable a inside print_info(). You will find that &a inside print_info() will have a different address from b (since a is passed by value, it becomes...
Results 1 to 2 of 2