IMPORTANT
If you decide to try the following codes, please do so at your own risk.

If the program is out of control and you are in trouble, press <Ctrl-C> to stop it.
An array of pointers to data type signed integers
# define __cdecl
# include <stdio.h>

signed(__cdecl main(void)) {
auto signed **d;
auto signed r;
auto signed number[] = {
-1,
0,
1,
2,
};
auto signed *(numbers[]) = {
0x00+(number),
0x01+(number),
0x02+(number),
0x03+(number),
0x00,
};
d = (numbers);
r = (0x00);
while(*(r+(d))) {
printf("%d \n",**(r+(d)));
r++;
}
return(0x00);
}