開發平台(Platform): (Ex: Win10, Linux, ...)
Dev C
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
GCC
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
stdio.h
stdlib.h
問題(Question):
小弟我略懂linked list
知道怎麼建linked list, 也知道要用malloc/free
但是想問說為什麼當不使用malloc時
建單一linked list node時
無法使用struct pointer存取資料
餵入的資料(Input):
無
預期的正確結果(Expected Output):
程式順利跑完
錯誤結果(Wrong Output):
執行時程式當機停止運作
程式碼(Code):(請善用置底文網頁, 記得排版)
#include <stdio.h>
#include <stdlib.h>
typedef struct ns{
int value;
struct ns* next;
}Node;
int main() {
Node* list;
list->value = 3;
list->next = NULL;
printf("list value:%d\n",list->value);
printf("End test\n");
system("pause");
return 0;
}
補充說明(Supplement):
無