Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include<graphics.h> int main() { int gd=DETECT; int gm; initgraph(&gm,&gd,"C:\\TC\\BGI"); arc(200,200,0,130,50); closegraph(); getch(); }
给出错误警告:不推荐使用从字符串常量到 'char*' [-Wwrite-strings] 的转换
并且 main.exe 已停止工作