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.
我不能使用 C++ 语法cout,所以我尝试使用<conio.h>,但它仍然说
cout
<conio.h>
未定义对“_gotoxy”的引用
有什么问题?每个人都说conio.h它不在 K&R 中,因为它不是标准库。有人有想法吗?
conio.h
我正在使用 MinGW 和命令提示符。
链接时,您需要添加 ncurses 库:
$ gcc my-source.c -o my-program -lncurses
上面 ( ) 命令行的最后一个标志-lncurses告诉编译器将 ( -l) 与 ncurses 库链接。
-lncurses
-l