Call by reference
Pascal         C/C++
procedure p(var x: integer);
begin
   x := 17;
end;
   p(i);
   C++ only:
void p( int &x)
{
   x = 17;
}
p(i);