開發平台(Platform): (Ex: Win10, Linux, ...)
Windows 10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
Visual Studio 2017
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
stdio.h
問題(Question):
無法初始化
餵入的資料(Input):
無
預期的正確結果(Expected Output):
無
錯誤結果(Wrong Output):
類型(void *)無法用來初始化類型"int"的實體
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
int *x = malloc(sizeof(int));
補充說明(Supplement):
程式碼的部分,是某個課本刻下來部分程式碼
這課本原本是用C,但visual studio似乎沒有C的編譯器
所以用C++,
結果就出現了這個錯誤
上網找也找不到解決辦法QQ