start king

This commit is contained in:
Your Name
2026-05-02 03:10:01 +02:00
parent 05e167b58a
commit 64ef5c8a7c
8 changed files with 42 additions and 0 deletions
+15
View File
@@ -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;
}