How pointer is benefit for design a data structure algorithm?

Answers were Sorted based on User's Feedback



How pointer is benefit for design a data structure algorithm?..

Answer / kaushal vinayak

Pointer is that variable who store the address of the
variable.In data structure a node consist of two part data
and link part,where link part consist of hold the address of
the next node which is possible through pointer which
points to next node. through pointer you can go to the next
node in any defined data structure.

Is This Answer Correct ?    10 Yes 0 No

How pointer is benefit for design a data structure algorithm?..

Answer / deepu.

I am cheking.by useing
pointer we save the
memory.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

1 Answers  


Explain what are the standard predefined macros?

1 Answers  


what is computer

4 Answers  


What is the difference between exit() and _exit() function?

1 Answers  


What is Function Pointer? Explain with example?

3 Answers  


Write a program to print distinct words in an input along with their count in input in decreasing order of their count..

1 Answers  


When can you use a pointer with a function?

1 Answers  


How are Structure passing and returning implemented by the complier?

1 Answers   TISL,


Can we change the value of constant variable in c?

1 Answers  


plz answer..... a program that reads non-negative integer and computes and prints its factorial

2 Answers  


What does main () mean in c?

1 Answers  


What is the best way to comment out a section of code that contains comments?

1 Answers  


Categories