long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / jp
The integer size is processor dependent.
In Turbo C or Borland C , we are using only the 8086
virtual mode processor. thus we get size of int as 2Byte
and thus size of long int as 4 Byte.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is a sequential access file?
Explain the use of fflush() function?
What is the translation phases used in c language?
Are c and c++ the same?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What are lookup tables in c?
Explain how do you determine the length of a string value that was stored in a variable?
What are pointers? What are different types of pointers?
What are different storage class specifiers in c?
how to make a scientific calculater ?
What is the difference between array and structure in c?
When should the register modifier be used? Does it really help?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
How are variables declared in c?
What are identifiers in c?