// %u or %lu, if %zd does not work
#include <stdio.h>
int main(void)
{
	int pidaron = 3;
	int nonpidaron[] = {1, 2, 4, 5};
	printf("adress of pidaron is %p\n", &pidaron);
	printf("Pidaron! Выйди вон! %d\n", nonpidaron[-1]);
	
	return 0;
}