long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / nilabh
4 bytes
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Write a program to reverse a string.
How to create struct variables?
Can you mix old-style and new-style function syntax?
What is the difference between ++a and a++?
What is pointers in c?
What are conditional operators in C?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What are the advantages of using new operator as compared to the function malloc ()?
What is conio h in c?
Explain what is the difference between far and near ?
Why is c called a structured programming language?
What is the purpose of void in c?
Why enum is used in c?
How to find a missed value, if you want to store 100 values in a 99 sized array?