How pointer is benefit for design a data structure algorithm?
Answers were Sorted based on User's Feedback
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 |
Answer / deepu.
I am cheking.by useing
pointer we save the
memory.
| Is This Answer Correct ? | 2 Yes | 0 No |
How to implement a packet in C
Can you please explain the difference between exit() and _exit() function?
How can you check to see whether a symbol is defined?
Write any data structure program (stack implementation)
Function calling procedures? and their differences? Why should one go for Call by Reference?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is volatile in c language?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
What are the usage of pointer in c?