answersLogoWhite

0


Best Answer

INT 86 Int86() is a C function that allows to call interrupts in the program. prototype in dos.h In and out register must be type of REGS. REGS is a built in UNION declaration in C. It is defined in the header file <DOS.h>

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

It's an non-standard MS-DOS-specific function to call BIOS/DOS functions.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the INT86 function in C programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is int86 function in C programming?

INT 86 Int86() is a C function that allows to call interrupts in the program. prototype in dos.h In and out register must be type of REGS. REGS is a built in UNION declaration in C. It is defined in the header file &lt;DOS.h&gt;


What is int86 function in c plus plus?

It is DOS-specific function in TurboC to call an interrupt. See the built-in help.


What is mean by int 86 in c language?

int86 is a function in TurboC, header dos.h, consult the built-in help.


What is d command for squareroot in C programming?

There are no commands in C-programming, you should use function sqrt from math.h


What is a sizeof function in C programming?

Sizeof is an example.


Is combination a library function in c language of programming?

No.


What is the function of square root in C programming?

it is sqrt in header math.h


What is fncn in C programming?

1. identifier 2. short for function


What is the approach of C programming known as?

Sequential style, or function-oriented. Which is opposed to object-oriented, as in C++.


How do you print 0001 in C programming?

its quite simple using printf function


What is library function in C programming?

printf, fgets, strlen, malloc etc


What an example of a function?

In C-programming: int main (void) { return 0; }