Skip to content
Snippets Groups Projects
00004.c 73 B
int
main()
{
	int x;
	int *p;
	
	x = 4;
	p = &x;
	*p = 0;

	return *p;
}