[問題] 請問call by pointer回傳的問題
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Dev-C++
問題(Question):
void Test( ????? )
{
Node *temp = NULL;
temp = new Node;
temp->next = NULL;
strcpy( temp->Variable_name, "counter" ) ;
} // end void
int main()
{
Node *Variable_list_head = NULL ;
Test( Variable_list_head ) ;
cout << Variable_list_head << endl;
system("pause") ;
return 0 ;
} // end main()
請問要怎麼把Variable_list_head指標指向temp的位置?
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 123.0.253.166
→
08/20 02:12, , 1F
08/20 02:12, 1F
→
08/20 02:13, , 2F
08/20 02:13, 2F
→
08/20 02:13, , 3F
08/20 02:13, 3F
→
08/20 03:11, , 4F
08/20 03:11, 4F
請問哪裡怪? 之前教授教的就這樣 習慣了XD
※ 編輯: polomaster27 來自: 123.0.253.166 (08/20 03:25)
推
08/20 03:29, , 5F
08/20 03:29, 5F
→
08/20 03:30, , 6F
08/20 03:30, 6F
→
08/20 03:32, , 7F
08/20 03:32, 7F
一時忘了打XD,後來有更正
→
08/20 03:38, , 8F
08/20 03:38, 8F
感謝各位大大幫忙
※ 編輯: polomaster27 來自: 123.0.253.166 (08/20 05:00)
→
08/22 04:04, , 9F
08/22 04:04, 9F
討論串 (同標題文章)
以下文章回應了本文:
完整討論串 (本文為第 1 之 2 篇):