GMgKe586q6suSQnyqZLlGCooeWM
Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
Home
Me
Search
Friday, March 11, 2011
CPP - Reference Variable
#include <iostream>
using namespace std;
int main()
{
// b is an alias of a
int a, &b = a;
b = 9;
cout << a << endl;
return 0;
}
CPP - Reference Variable
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment