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


Please Help Members By Posting Answers For Below Questions

Explain the use of #pragma exit?

890


What is a macro in c preprocessor?

827


Write program to remove duplicate in an array?

786


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

946


What are the different types of control structures in programming?

859


What are the application of c?

825


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

2339


Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

858


What is the use of getchar functions?

902


What is "Hungarian Notation"?

825


What is pointer and structure in c?

758


What is the use of header?

818


Explain 'bit masking'?

825


Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

883


What is a #include preprocessor?

806