a way in which a pointer stores the address of a pointer which stores the value of the target value
a) reference
b) allocation
c) multiple indirection
d) none
No Answer is Posted For this Question
Be the First to Post Answer
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
What is a Deque?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
What is the difference between procedural and declarative language?
What is spaghetti programming?
what defference between c and c++ ?
how to determine the complexity of an algorithm as log(n)
What is the difference between if else and switchstatement
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
Are comments included during the compilation stage and placed in the EXE file as well?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
What's the difference between constant char *p and char * constant p?