what is pointer?
Answers were Sorted based on User's Feedback
Answer / guest
a pointer is a a variable that contains the address of an
another variable
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / j naveen reddy
Pointer is a reference variable, as it refers the address of the other variable
| Is This Answer Correct ? | 0 Yes | 0 No |
what will be the output for the following main() { printf("hi" "hello"); }
how to generate the length of a string without using len funtion?
what r the cpu registers r ther?
What does malloc () calloc () realloc () free () do?
How to convert decimal to binary in C using recursion??
What are local static variables? How can you use them?
What is huge pointer in c?
What is an endless loop?
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
Are global variables static in c?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
where can function pointers be used?