Write the syntax in C to create a node in the singly linked list. › Category: Data Structure › Write the syntax in C to create a node in the singly linked list. 0 Vote Up Vote Down Editor">Editor Staff asked 2 years ago Write the syntax in C to create a node in the singly linked list. 1 Answers 0 Vote Up Vote Down Editor">Editor Staff answered 2 years ago struct node { int data; struct node *next; }; struct node *head, *ptr; ptr = (struct node *)malloc(sizeof(struct node));