Files
exc/qscr/c/learnc/linkedlist.c
T
2026-05-02 03:10:01 +02:00

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;
}