#include <stdio.h>
#include <stdlib.h>

typedef struct{
	int number;
	struct linklist *next;
}Node;

Node *head; //head = [int][NULL] 

void Insert(int x){
    Node *temp = (Node*)malloc(sizeof(Node));//(type change)malloc(the size of the organized block) 
    
}

int main(){
	
    Insert();
    Print();
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: