This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Need Library header files to run C files in Keil

I need the header files conio.h, dos.h and all that to make it run in Keil Compiler.. Where do I get these?

Parents
  • 1. Nothing "runs" in any compiler.
    You use a compiler to translate your source files into something that you can run on some target system.

    2. conio.h, dos.h are for MSDOS-based PC systems.
    Keil tools do not create code to run on PCs, and you won't get MS-DOS running on an 8051!!

    I'm afraid you are in totally the wrong ballpark here!

Reply
  • 1. Nothing "runs" in any compiler.
    You use a compiler to translate your source files into something that you can run on some target system.

    2. conio.h, dos.h are for MSDOS-based PC systems.
    Keil tools do not create code to run on PCs, and you won't get MS-DOS running on an 8051!!

    I'm afraid you are in totally the wrong ballpark here!

Children