次のような関数を呼び出す場合:
coworkers = engineers(1,0,3);
...
int engineers(unsigned char nerd, unsigned char dweeb[], unsigned char derp) {
printf("Is this the address of dweeb[0]? 0x%x \n", dweeb);
printf("Is this the value of dweeb[0]? %x \n", dweeb[0]);
}
Output:
Is this the address of dweeb[0]? 0xfeedbeef
Is this the value of dweeb[0]?
0 の値を dweeb[] に渡すと、それは dweeb[0] の値になりますか?
--私はダープです、楽しい金曜日をお過ごしください。ありがとう