Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Are you copying code from C for Dummies ? – nategoose Sep 17 '10 at 14:22

1 Answer

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

share|improve this answer
Especially if you are using Fedora ;) – BatchyX Sep 17 '10 at 7:47
4  
FWIW, most people use conio.h just to use getch() so their program doesn't exit straight away in their IDE. There's a perfectly good standard alternative in getchar(): see stackoverflow.com/questions/3153538/2d-array-addition/… – paxdiablo Sep 17 '10 at 7:51
2  
@paxdiablo, +1 for enlightening me on the possible source of this ridiculous behavior. – R.. Sep 17 '10 at 13:12
@codaddict But i am getting the same issue for stdio.h. why? Please explain. – Dhasneem Mar 7 at 10:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.