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
How can I make it pause before closing the program output window?
What is volatile c?
What is calloc malloc realloc in c?
What is graph in c?
Can math operations be performed on a void pointer?
What is a stream?
Explain how do you use a pointer to a function?
What does *p++ do? What does it point to?
What are different storage class specifiers in c?
Write a program to print numbers from 1 to 100 without using loop in c?
What are structures and unions? State differencves between them.
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
Where local variables are stored in c?
Explain low-order bytes.
Why is a semicolon (;) put at the end of every program statement?