Created
May 28, 2016 20:08
-
-
Save dvtate/3b1efcd7b241777b2c6e300e60bef826 to your computer and use it in GitHub Desktop.
more stuff for n00bs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> //std::cout | |
//example function using pointers (C-compatable) | |
void increaseBy5(int* number); | |
//example function using reference parameters (C++ only) | |
void add5(int& number); | |
int main(){ | |
int x = 20; | |
std::cout <<"\nx = " <<x; | |
increaseBy5(&x); // NOTE: we have to use the address-of operator here | |
std::cout <<"\n x is now = " <<x; | |
add5(x); // look at how simple this looks... | |
std::cout <<"\n x is now = " <<x; | |
} | |
void increaseBy5(int* number){ //pointers version (backward compatible) | |
*number += 5; | |
} | |
//An Important thing to note is that this won't work with constants. | |
// (gives errors and doesn't make sense) | |
// to practice this try replacing `x` in line 20 with a numerical constant. (ie - `6`) | |
void add5(int& number){ //reference-parameters version (simpler) | |
number += 5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment