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