void foo(int i)
{
	i = 100;
}

int main()
{
	int value = 0;
	foo(value);
	printf("%d\n", value);
}