開發平台(Platform): (Ex: Win10, Linux, ...)
linux
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
gcc
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
第一次用cppcheck 這個程式發現不管我如何寫都會出現syntax error
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
例如
for(int i=1;i<3;i++)
printf("test");
或是
int i;
for(i=1;i<3;i++)
printf("test");
都一樣, 我以前寫mfc是沒遇過
請問一下cppcheck的for loop要如何寫才不會出現error?
補充說明(Supplement):