conio.h
is a C header file used with old MS-DOS compilers to create text user interfaces. Compilers that target other operating systems, such as Linux-based, 32-bit Windows and OS/2, provide equivalent functionality through other header files and libraries.
The #include <curses.h>
will give you almost all of the functionality provided by conio.h
.
“ncurses” needs to be installed in the first place.
If you use the Apt package manager:
sudo apt-get install libncurses5-dev libncursesw5-dev
If you use rpm
:
sudo yum install ncurses-devel ncurses
For getch
, take a look at the “NCURSES Programming HOWTO” article.
Related Posts:
- difference between
and - Bind failed: Address already in use
- Warning/error “function declaration isn’t a prototype”
- warning: initializer element is not computable at load time
- Why should we check WIFEXITED after wait in order to kill child processes in Linux system call?
- Why do I get “cast from pointer to integer of different size” error?
- Where to find the complete definition of off_t type?
- Undefined reference to main – collect2: ld returned 1 exit status
- malloc(): memory corruption
- typedef fixed length array
- Where does linux store my syslog?
- How to solve static declaration follows non-static declaration in GCC C code?
- How to know what the ‘errno’ means?
- How to use shared memory with Linux in C
- Why does ENOENT mean “No such file or directory”?
- Openssl : error “self signed certificate in certificate chain”
- warning: incompatible implicit declaration of built-in function ‘xyz’
- Fatal error: iostream: No such file or directory in compiling C program using GCC
- Does connect() block for TCP socket?
- Display value found at given address gdb
- How to initialize array to 0 in C?
- Sign extend a nine-bit number in C
- Warning: assignment from incompatible pointer type
- valgrind – Address —- is 0 bytes after a block of size 8 alloc’d
- make: Nothing to be done for `all’
- Data argument not used by format strings in C
- expected expression before ‘{‘ token
- Setting std=c99 flag in GCC
- C Vector/ArrayList/LinkedList
- Returning an array using C
- Debug vs Release in CMake
- error: ‘for’ loop initial declarations are only allowed in C99 mode [duplicate]
- c – warning: implicit declaration of function ‘printf’
- Flushing buffers in C
- What are 0x01 and 0x80 representative of in C bitwise operations?
- How to make parent wait for all child processes to finish?
- error: aggregate value used where an integer was expected
- Undefined Reference issues using Semaphores
- What is time(NULL) in C?
- Use of cudamalloc(). Why the double pointer?
- Implementing shell in C and need help handling input/output redirection
- Compiling a .C file: Undefined symbols for architecture x86_64
- Portable way to check if directory exists [Windows/Linux, C]
- How to use EOF to run through a text file in C?
- Incorrect checksum for freed object on malloc
- Removing trailing newline character from fgets() input
- Simple way to check if a string contains another string in C?
- What does “request for member ‘*******’ in something not a structure or union” mean?
- gcc: undefined reference to
- Segmentation fault (core dumped) due to fgets – I think
- What does “request for member ‘*******’ in something not a structure or union” mean?
- Unknown ending signal when using debugger gdb
- Valgrind: invalid read of size 4 -> sigsegv, works fine without valgrind and in visual studio
- How to convert integer to char in C?
- Is there a good Valgrind substitute for Windows?
- Difference between “move” and “li” in MIPS assembly language
- Writing a simple shell in C using fork/execvp
- How to empty a char array?
- What is the difference between array and enum in C ?
- Implementation of multiple pipes in C
- How can one see content of stack with GDB?
- What does the term “empty loop” refer to exactly in C and C++?
- What integer hash function are good that accepts an integer hash key?
- Proper way to empty a C-String
- X86 assembly – Handling the IDIV instruction
- Pause screen at program completion in C
- Is there an alternative sleep function in C to milliseconds?
- Difference between fgets and fscanf?
- How do I compile the asm generated by GCC?
- What is the difference between %g and %f in C?
- Structure padding and packing
- Lua – Number to string behaviour
- make -j 8 g++: internal compiler error: Killed (program cc1plus)
- C fopen vs open
- Reading in double values with scanf in c
- Realloc Invalid Pointer in C
- What tools are there for functional programming in C?
- “-bash: gcc: command not found” using cygwin when compiling c?
- In C, what exactly happens when you pass a NULL pointer to strcmp()?
- lseek/write suddenly returns -1 with errno = 9 (Bad file descriptor)
- What are the differences between if, else, and else if?
- Should I use printf(“\n”) or putchar(‘\n’) to print a newline in C?
- error: struct has no member named X
- strtok segmentation fault
- Invalid write of size 1
- Linker error: “linker input file unused because linking not done”, undefined reference to a function in that file
- realloc(): invalid next size when reallocating to make space for strcat on char *
- Constructor for structs in C
- C Error: declaration shadows a local variable — Won’t let me repeatedly replace the value of my float variable
- MIPS to C Translation
- Pointer to 2D arrays in C
- Pointer to a string in C?
- gdb: No symbol “i” in current context
- Cross Platform C library for GUI Apps?
- Implicit function declarations in C
- Pre increment vs Post increment in array
- Convert long long to string in C?
- how to stop a loop arduino
- How to normalize a mantissa
- How to add a default include path for GCC in Linux?