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 |
where can function pointers be used?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
how to write a prog in c to convert decimal number into binary by using recursen function,
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Subtract Two Number Without Using Subtraction Operator
What are the ways to a null pointer can use in c programming language?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
How will you allocate memory to double a pointer?
What is sizeof int in c?
how to set Nth bit of variable by using MACRO
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?