what is the difference between
const char *p, char const *p, const char* const p
Answer Posted / vignesh1988i
CONST char *p:
here the const. keyword is coming before the data
type... so the string here will be the constant but not he
pointer...
char CONST *p:
here also the string will be the constant but not the
pointer...
CONST char* CONST p:
here both , the string as well the pointer will be constant
Is This Answer Correct ? | 64 Yes | 32 No |
Post New Answer View All Answers
Explain the use of #pragma exit?
What is a macro in c preprocessor?
Write program to remove duplicate in an array?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What are the different types of control structures in programming?
What are the application of c?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the use of getchar functions?
What is "Hungarian Notation"?
What is pointer and structure in c?
What is the use of header?
Explain 'bit masking'?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is a #include preprocessor?