It sure does support indirection mutliple times:
Code:
#include <acknex.h>

int i = 0;

void main()
{
	int* p1 = &i;
	int** p2 = &p1;
	(*(*p2)) = 1337;
	printf("%d",i);
}



Always learn from history, to be sure you make the same mistakes again...