Answer Posted / srsabariselvan
constant Pointer:
we can't modify the value of pointer.i.e.,value of
pointer is constant.
Declaration:
int i=2,j;
int const *p;
p=&i;
p=&j;
Pointer Constant:
in case of Pointer constant, we can't modify the address of
pointer.i.e,address stored in pointer is constant.
This must be intialized
Declaration:
int i=2;
int *const p=&i;
*p=4;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
int far *near * p; means
What is the use of in c?
Can main () be called recursively?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is the significance of scope resolution operator?
Does c have an equivalent to pascals with statement?
What is hashing in c language?
What are enums in c?
What are the string functions? List some string functions available in c.
How can I write functions that take a variable number of arguments?
How do we make a global variable accessible across files? Explain the extern keyword?
What do the functions atoi(), itoa() and gcvt() do?
What is a void pointer in c?