1 2 3 4 5 6 7 8
#include <stdio.h> void main() { int tmp[] = {0, 1}; int* t = tmp; printf("%d\n", *t++); printf("%d\n", *t++); }