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
How can I list all of the predefined identifiers?
What are the types of unary operators?
Can the sizeof operator be used to tell the size of an array passed to a function?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Tell us something about keyword 'auto'.
Why header file is used in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What are pointers? Why are they used?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Can you explain the four storage classes in C?
What is a example of a variable?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What does sizeof int return?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;