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