Thread
:
Returning two values
View Single Post
Jun 12th, 2005, 2:21 PM
#
8
Ancient Dragon
PFO God In Training
Join Date: Jun 2005
Location: near St Louis, MO. (USA)
Posts: 529
Rep Power:
4
Quote:
Originally Posted by
uman
C has references?
yes
(
Toggle Plain Text
)
// c++ reference void foo(int& x) { x = 0; } // C reference void foo(int* x) { *x = 0; }
// c++ reference void foo(int& x) { x = 0; } // C reference void foo(int* x) { *x = 0; }
Ancient Dragon
View Public Profile
Find More Posts by Ancient Dragon