Horje
append to list in c Code Example
append to list in c
void Append(Node *head, Node node){
	Node tmp = *head;
    if(*head == NULL) {
    	*head = node;
      	return;
    }
  	while(tmp->next != NULL){
    	tmp = tmp->next;
  	}
  	tmp->next = node;
  	return;
}




C

Related
initialize array in c with 0 Code Example initialize array in c with 0 Code Example
how to print a file c Code Example how to print a file c Code Example
c pause for 1 second Code Example c pause for 1 second Code Example
strcasecmp c Code Example strcasecmp c Code Example
atoi Code Example atoi Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6