long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / suchita
long integers require twice the space in memory than ordinary
ints. thus, long integers would occupy four bytes of memory.
| Is This Answer Correct ? | 30 Yes | 48 No |
Post New Answer View All Answers
What is the purpose of sprintf() function?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
How do shell structures work?
What are the types of pointers?
What is pre-emptive data structure and explain it with example?
What are different types of pointers?
What are the properties of union in c?
Write a program to use switch statement.
What does it mean when the linker says that _end is undefined?
Explain what is the general form of a c program?
what do the 'c' and 'v' in argc and argv stand for?
Write a code to generate divisors of an integer?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is the sizeof () operator?