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

Post New Answer

More C Interview Questions

What are the different flags in C? And how they are useful? And give example for each in different consequences?

1 Answers  


Q. where is the below variables stored ? - volatile, static, register

3 Answers   Bosch,


Explain what is meant by 'bit masking'?

0 Answers  


12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


How can I set an array's size at run time?

9 Answers  






What is the time and space complexities of merge sort and when is it preferred over quick sort?

0 Answers   Amazon,


how to find string length wihtout using c function?

6 Answers  


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  


What is the difference between if else and switchstatement

0 Answers  


What is the scope of static variables in c language?

0 Answers  


what does " calloc" do?

7 Answers   Cadence, Logos,


What is const and volatile in c?

0 Answers  


Categories