Term
|
Definition
An another name for a variable. |
|
|
Term
Whats wrong with the code. intmyScore=1000; |
|
Definition
|
|
Term
Variable that passes as a function |
|
Definition
|
|
Term
Whats wrong.. void badSwap{int x, int y}; |
|
Definition
void badSwap(int x, int y); |
|
|
Term
|
Definition
|
|
Term
Parameter will get a copy of the agument |
|
Definition
|
|
Term
Can you gave a function access to an agrumrent |
|
Definition
|
|
Term
Passing a variable by value created some... |
|
Definition
|
|
Term
You must do what to a variable before you assign it to a parameter |
|
Definition
|
|
Term
Why is passing by reference efficient |
|
Definition
You don't have to make a copy of the variable |
|
|