數組傳參的本質

void f(char st[]) { printf("\nf函數內: 自己地址%p 值%d 表明的存儲區域大小%d", &st,st,sizeof(st)); } void main() { char st[] = "hello"; printf("main函數內: 自己地址%p 值%d 表明的存儲區域大小%d", &st, st, sizeof(st)); f
相關文章
相關標籤/搜索