What are pointers in C?
Answers were Sorted based on User's Feedback
Answer / sagar hande
Pointer is variable that contains memory location of
another variable
Is This Answer Correct ? | 33 Yes | 0 No |
Answer / mukesh kumar
pointer is variable it contain's or store the address of
other variable.
Is This Answer Correct ? | 13 Yes | 0 No |
Answer / tarun gupta
Pointer is a variable. that contain's the M/r location of
another variable.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / esakkimuthu.s.
pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rajgopal
pointer is variable which store the addrss of another variable
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between exit() and _exit()?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is the difference b/w Structure & Class?
What is a class?
How do you determine a file’s attributes?
write a c program to find largest of three numbers using simple if only for one time.
What are qualifiers?
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
please send me the code for multiplying sparse matrix using c
What is typedef example?
What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.