How pointer is benefit for design a data structure algorithm?
Answer Posted / 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 |
Post New Answer View All Answers
What is a program flowchart?
Why double pointer is used in c?
What is the use of f in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is meant by keywords in c?
Is c++ based on c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
define string ?
Place the #include statement must be written in the program?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Why c is a procedural language?
i want to know the procedure of qualcomm for getting a job through offcampus
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why is not a pointer null after calling free?