const char *
char * const
What is the differnce between the above two?
Answer Posted / atreyee
char * const, the pointer is declared as constant.
const char *, the pointer is not constant.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Do class declarations end with a semicolon?
What are the advantages of c++? Explain
What is meant by forward referencing and when should it be used?
Is arr and &arr are same expression for an array?
What is the difference between method overloading and method overriding in c++?
When do we run a shell in the unix system?
What is constructor and destructor in c++?
What are exceptions c++?
What is set in c++?
What things would you remember while making an interface?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
an operation between an integer and real always yeilds a) integer result b) real result c) float result
How do you sort a sort function in c++ to sort in descending order?
Is c++ faster than c?
how can i access a direct (absolute, not the offset) memory
address?
here is what i tried:
wrote a program that ask's for an address from the user,
creates a FAR pointer to that adress and shows it. then the
user can increment/decrement the value in that address by
pressing p(inc+) and m(dec-).
NOW, i compiled that program and opened it twice (in 2
different windows) and gave twice the same address to it.
now look what happen - if i change the value in
one "window" of the program, it DOES NOT change in the
other! even if they point to the same address in the memory!
here is the code snippet:
//------------------------------------------------------
#include