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
Is c is a low level language?
What are the main characteristics of c language describe the structure of ac program?
write a program to find the given number is prime or not
in linking some of os executables are linking name some of them
Can we compile a program without main() function?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is the difference between printf and scanf in c?
What is the scope of global variable in c?
What is the purpose of & in scanf?
Is c easier than java?
What does c mean before a date?
What is 02d in c?
What is the best style for code layout in c?
What is property type c?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f