|
|
| c=a; //PLEASE PAY ATTENTION RIGHT HERE. ---IS the int 'c' a VALUE STORED ON HEAP OR STACK? d=b; // THE SAME QUESTION WITH 'd' |
| // ARE THESES VALUES and this instance of 'ter' gonna be on heap // or just the function itself not the values its accepting. // Cuz i'm wondering if 'a' & 'b' will be values on heap in the location where // the address of 'ter' should be located. |
| // Cuz i'm wondering if 'a' & 'b' will be values on heap in the location where // the address of 'ter' should be located. |