Licson Lee
says to
YSITD
int* ptr = (int*)malloc(sizeof(int) * 10); *ptr = 1; ptr++; *ptr = 2; 咦?