Title / Description
Code #include<iostream> using namespace std; void lolo(int &a) { a = 3; } void lol(int* a) { *a = 44; } int main() { int a = 5; int* b = &a; *b = 6; cout<<a<<endl; lolo(a); cout<<a<<endl; int &c = a; c = 11; cout<<a<<endl; lol(&a); cout<<a; return 0; }
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code