Bartleby Related Questions Icon

Related questions

Question
What is the difference when I write in program
mynode * head;
add_node (&head, 10);
add_node struct node ** head, into value);
To this
mynode *head;
add_node (head, 10);
add_node struct node* head, into value)
Which is the correct way of writing?
expand button
Transcribed Image Text:What is the difference when I write in program mynode * head; add_node (&head, 10); add_node struct node ** head, into value); To this mynode *head; add_node (head, 10); add_node struct node* head, into value) Which is the correct way of writing?
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Similar questions