欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

infunctionintmain

劉姿婷2年前18瀏覽0評論

infunctionintmain?

In function 'int main()' 這種編譯提示是gcc/g++的一種問題描述格式,告訴你編譯問題出現在源代碼什么位置,如你這里的問題就出在int main()函數中,接下來還應該有相應的錯誤(警告)描述,如有如下的源代碼test.c:

int main(){ printf("hello world")}$ g++ test.c 編譯程序test.c: In function 'int main()': 報告錯誤所在的位置test.c:3: error: 'printf' was not declared in this scope 錯誤解釋:printf未聲明(缺少頭文件)test.c:4: error: expected `;' before '}' token 錯誤解釋:printf("hello world")語句沒有以分號結尾,加上分號就可以了。

根據編譯器所提供的線索,可以方便的定位源程序出錯的地方,快速查找和解決程序語法錯誤。