Answer Posted / jai
It is variable that holds the address of another variable..
As ordinary varible pointer also has datatype. So, It
stores only address of the variable of the same type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What’s a signal? Explain what do I use signals for?
What is malloc calloc and realloc in c?
Explain what standard functions are available to manipulate strings?
The file stdio.h, what does it contain?
What is a structure in c language. how to initialise a structure in c?
What is the use of define in c?
Write a program to print “hello world” without using semicolon?
What are the data types present in c?
What is the difference between void main and main in c?
What is a pointer value and address in c?
What is #include cctype?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is strcmp in c?
What is keyword with example?
Can true be a variable name in c?