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
Do you know what are the properties of union in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
how to construct a simulator keeping the logical boolean gates in c
What do you mean by dynamic memory allocation in c? What functions are used?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is the return type of sizeof?
Why n++ execute faster than n+1 ?
Write a program to swap two numbers without using third variable in c?
What is the difference between exit() and _exit() function in c?
What is quick sort in c?
What is c system32 taskhostw exe?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Can we use any name in place of argv and argc as command line arguments?
What is "Duff's Device"?
Can you define which header file to include at compile time?