PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Anonymous [C/C++]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#include <iostream> using namespace std; void squareMe(int a, int *b) // It looks uglier! { *b = a*a; } int main(int argc, char *argv[]) { int a = 2, *b = 0; b = new int; // memory allocation, if you don't do this, you face crashing. squareMe(a, b); cout << *b << endl; // messier, no? delete b; // dealloc return 0; } |