Answer Posted / s.s.venkatesh
Pointer is also a variable,that is used to refer the memory
location of the particular variable(that is pointer
variable).
In pointer,we can get address of the particular variable by
using ambuson(&) symbol.
we can get the value by using asterisk(*) symbol.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between abs() and fabs() functions?
What is the use of typedef in structure in c?
Explain a file operation in C with an example.
What are the differences between new and malloc in C?
How do you write a program which produces its own source code as output?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is structure packing in c?
How can I determine whether a machines byte order is big-endian or little-endian?
Is int a keyword in c?
What is difference between far and near pointers?
What are register variables? What are the advantage of using register variables?
What is malloc return c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What are the Advantages of using macro