私は理にかなっていますか?これは私がやろうとしていることです:
unsigned int *a = 0;
unsigned int **b = &a;
// b -> a -> null
*b = (unsigned int*)malloc(12);
// b -> a -> [xxxx|xxxx|xxxx]
*(*b+1) = (unsigned int)malloc(sizeof("come on!"));
// b -> a -> [xxxx|xxxx|xxxx]
// v
// [xxxxxxxxx]
strcpy((char*)*(*b+1),"come on!"); // FAILS! why?
他に何を説明できるかわかりません。