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 |
how to find the given number is prime or not?
Do array subscripts always start with zero?
What are the Advantages of using macro
what is the use of fflush() function?
how to set Nth bit of variable by using MACRO
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is the default value of local and global variables in c?
what's the return value of malloc()
Why array is used in c?
Write a function that will take in a phone number and output all possible alphabetical combinations
write a program to display numbers from 1 to 10 and 10 to 1?