在上一篇文章C/C++中一次性執行多個DOS命令中,從MSDN下的源碼,在Dev-Cpp中直接編譯,報告以下警告信息:ide
D:\Workspace\research\C\main.cpp [Warning] deprecated conversion from string constant to 'LPTSTR {aka char*}' [-Wwrite-strings]spa
網上查了一下,說這是最新的C/C++標準不支持下面的這種寫法:code
char* x = "hello";
解決方案:char *改成const char *。blog
const char* x = "hello";