ผมใช้ Dev C ครับจะเอาไปไว้ในไลเบอรี่ เพื่อเรียกใช้ <Node.h> แต่อันนี้มันรันไม่พออะครับติด
เเจ้งโค็ดผิดตรงฟังชั่นที่มี malloc ผมดูโค็ดจากหนังสือนะครับ ไม่ทราบว่าเป็นเพราะอ่ะไรครับ
#include<stdio.h>
#include<stdLib.h>
//structure Link List
struct node{
int item;
struct Node *next;
};
//Function insert new node in Link List
struct Node *insertNode (int newitem,struct Node *nextNode){
struct Node *newNode;
newNode = (struct Node *)malloc(sizeof(struct Node));
newNode->item = newitem;
newNode->next = nextNode;
return(newNode);
}
การเรียกใช้ฟังชั่น Node โครงสร้างลิงค์ลิสต์ทิศทางเดียวใน C ช่วยหน่อยครับ
เเจ้งโค็ดผิดตรงฟังชั่นที่มี malloc ผมดูโค็ดจากหนังสือนะครับ ไม่ทราบว่าเป็นเพราะอ่ะไรครับ
#include<stdio.h>
#include<stdLib.h>
//structure Link List
struct node{
int item;
struct Node *next;
};
//Function insert new node in Link List
struct Node *insertNode (int newitem,struct Node *nextNode){
struct Node *newNode;
newNode = (struct Node *)malloc(sizeof(struct Node));
newNode->item = newitem;
newNode->next = nextNode;
return(newNode);
}