Last active
August 29, 2015 14:21
-
-
Save mtauraso/471071af544ec5a2e65a to your computer and use it in GitHub Desktop.
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> | |
using namespace std; | |
struct A { | |
int an_integer; | |
float a_float; | |
}; | |
int main (void) { | |
// Lets begin with a pointer to an integer | |
int * pointer_to_int = new int (3); | |
cout << &pointer_to_int; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment