Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の構造があるとします。
struct node { int data; struct node *next; };
次の2つの機能の違いは何ですか:
void traverse(struct node *q);
と
void traverse(struct node **q);
それらはどのように使用されますか?