answersLogoWhite

0

What is mean by int 86 in c language?

Updated: 12/4/2019
User Avatar

Wiki User

14y ago

Best Answer

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

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is mean by int 86 in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Int a is literal in C language or not?

int a; -- variable definition"int a" -- string literal


What is the topNet class that everything is derived from in c?

C language: int (but C is NOT a .net language) C# language: object or System.Object


What is int in 'c' language?

data-type


What is segmentation faults in c language?

Example: int *p= (int *)-1; *p= 0;


How do you add two numbers in c language?

int a = 1 + 2; ---------- int a = 1; int b = 2; a += b;


Do some simple example about prototype in c language?

int foo (void); void bar (int);


How do you write palindrome program in c language?

int pallindrom(int p){ /*write all logic*/ }


In c language size of data type int?

printf ("sizeof (int) is %d bytes", (int)sizeof (int)); Most likely it will be 2 or 4.


Why only three types of pointer variable in c language?

I have no idea what you mean by that... Some examples for pointers of different types: int *intptr; char *charptr; void *generic_ptr; FILE *stdin; int (*funptr)(int, char **);


Write a program to determine the weighted arithmetic mean using C language?

#includevoid mean(int[],int);void main(){int n,a[24];printf("Enter the number of terms to find mean\n");scanf("%d",&n);printf("Enter the numbers\n");for(i=0;i


What is consonants in c language?

I think you mean constants. A constant is a variable that can not have its value changed at run time eg. const int a = 100;


How is typedef different from int in c language?

They are entirely different things; int is a type, typedef is a way to define types.