answersLogoWhite

0

The header file bios.h contains declarations, constants, and macros that allow you to make BIOS calls from within your code. Note that BIOS calls are in the realm of the operating system, so you should not use them without a specific need, such as a custom driver. Further, most operating systems will lock you out of making BIOS calls, because they require your process to be operating at a higher level privilege, such as ring-zero in Windows.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

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.


What is 11 plus 13 plus 17 plus 19 plus 23 equals?

83. If your can't use a calculator use your fingers, or just do it in your head!


How do you assign output in C plus plus?

To have your program output to a file you must do the following :First you must write the library that allows the use of files#include This will allow you to use the necessary codes to input or output to filesThen in your program you write the following codeofstream outfile("statistic.txt");This declares the assigned file for output. Here statistic.txt is the assign file. The program will send the output to that file.To send the output to the assigned file instead of the screen do the following:Instead of "cout


If a 6-inch 90 degree saddle on for a 12inch header is to be fabricated how far apart will the ordinate lines for this layout be?

To determine the distance between the ordinate lines for a 6-inch 90-degree saddle on a 12-inch header, you can use the formula for the saddle's dimensions. The distance between the ordinate lines is typically calculated based on the diameter of the header and the angle of the saddle. For a 90-degree saddle, the ordinate lines will be spaced approximately 1.5 inches apart for a 6-inch saddle on a 12-inch header. This ensures proper fit and alignment during fabrication.


What does 13 plus 18 plus 10 plus 39 plus 55?

It is so very simple and quick to get the answer if you use the calculator that comes with your computer. But since you are not able to use that simple application, the answer is 135.

Related Questions

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.


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 to use graphics in c plus plus?

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


What is the use of header file stdbool.h?

stdbool header file use for a new data type that is boolean value


C plus plus reading and writing a file?

Use an input file stream (ifstream) to read from a file and an output file stream (ofstream) to write to a file. Both can be found in the <fstream> standard library header.


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 use of myconstant.h header file?

You can include it into your source.


How do you include a system header file called sysheader.h in a c source file?

There is no system header called share.h, but if there were, it would be: #include <share.h>


How can you create a header file in c?

Use a text-editor.


What is the name of header file of delay?

Use the help (F1).


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.


Why you use header files in c?

the use of header files is to add functionality. Header files are basically saying put code in that header file here so you don't have to type that many lines of code.