View Single Post
Old Jun 12th, 2005, 2:21 PM   #8
Ancient Dragon
PFO God In Training
 
Ancient Dragon's Avatar
 
Join Date: Jun 2005
Location: near St Louis, MO. (USA)
Posts: 529
Rep Power: 4 Ancient Dragon is on a distinguished road
Quote:
Originally Posted by uman
C has references?
yes
// c++ reference
void foo(int& x)
{
   x = 0;
}

// C reference
void foo(int* x)
{
   *x = 0;
}
Ancient Dragon is offline   Reply With Quote