aboutsummaryrefslogtreecommitdiff
path: root/test/test2.c
blob: 988bf6ceeaa91ee889dbd5dc56d8e428c9412288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void function(i)
{
	int * sp;

	sp = &i;

	printf("%d\n", sp[0]);
}

main()
{
	function(23);
}