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
Explain what happens if you free a pointer twice?
What is %s and %d in c?
What are directives in c?
Can we use visual studio for c?
What is difference between stdio h and conio h?
What is the significance of an algorithm to C programming?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What does 1f stand for?
What are the functions to open and close file in c language?
When should the volatile modifier be used?
Explain what is the difference between a free-standing and a hosted environment?
What does. int *x[](); means ?
Why do we use pointer to pointer in c?
What is the sizeof () a pointer?
Explain the process of converting a Tree into a Binary Tree.