16 lines
208 B
C
16 lines
208 B
C
#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;
|
|
}
|