start king
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
struct node {
|
||||
int val;
|
||||
struct node * next;
|
||||
};
|
||||
|
||||
struct node_t * head = NULL;
|
||||
head = (struct node_T*)malloc(sizeof(struct node_t));
|
||||
|
||||
int main(){
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user