开发者

Unresolved inclusion: <conio.h>. Why?

开发者 https://www.devze.com 2023-01-17 00:39 出处:网络
While running a simple c program I receive an Unresolved inclusion: <conio.h> What am I missing? I am using eclipse on fedora 13. Please help me resolve this problem. If I am missing 开发者

While running a simple c program I receive an

Unresolved inclusion: <conio.h> 

What am I missing? I am using eclipse on fedora 13. Please help me resolve this problem. If I am missing 开发者_开发技巧any file or haven't installed anything let me know. Also I am new to fedora. Guide me with proper steps please.

Thanks in advance.


conio.h is a C header file used in old MS-DOS compilers to create text user interfaces. It is not described in The C Programming Language book, and it is not part of the C standard library, ISO C nor is it required by POSIX.

Since you are on Linux, to resolve it don't include conio.h and don't use any functions from that header.

Source

0

精彩评论

暂无评论...
验证码 换一张
取 消