answersLogoWhite

0


Best Answer

just as you do it in C.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you use conioh header in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which library file contain the definition of stdioh and conioh header file function definition in C language?

Platform dependent, possibly LIBC.LIB or something like that.


What is the use of header file graphics in c plus plus programming?

It has no use in C++ itself, it is only useful in Borland Turbo C++. It provides generic graphics support for Borland Turbo C++ applications.


How to use graphics in c plus plus?

At the beginning in the header file: #include <graphics.h>


Which header file is used for gotoxy function in turbo c plus plus?

It's in conio.h, but don't use gotoxy. Use SetCursorPosition() instead.


How do you install curses header file in fedora Linux in order to use getch function in a c an c plus plus program?

dnf install ncurses-devel


What is the header for basic input or output in C Plus Plus?

For basic input and output in C++: #include


What is the header file for getchar in c plus plus?

I think its in conio.h or stdio.h


How do you correct the C plus plus programming error missing function header?

You need to #include the header file that contains the missing function's declaration.


What is the function of conioh in C?

Not in C, only in TurboC.Direct console input-output (MS-DOS specific).


Is there any shortcut in compilers to find required header files for particular function in c c plus plus also does all the compilers have same header files?

You can find a detailed guide on CC plus on geany.org/manual/current/


Why need to declare header files compulsory in c plus plus but not in c?

The need to declare header files is not compulsory in C++. You may place all your code in a single source file if you so desire. However, header files are useful in that they separate interface from implementation and aid in hiding information.


How do you include classes and structures in header files in c plus plus?

Classes and structures can be put in a header file the same way you would use them in a main program; the only difference is that they are placed in a separate file, called a header file. Then, after creating a new file, include that new file with the definition by the use of the preprocessor #include statement.