wats the diference btwen constant pointer and pointer to a
constant.pls give examples.
Answer Posted / satish
char * const p; ->it is const pointer to char
const char * p; ->it is pointer to const char
| Is This Answer Correct ? | 29 Yes | 3 No |
Post New Answer View All Answers
Can a pointer be static?
Is it fine to write void main () or main () in c?
What is variable and explain rules to declare variable in c?
How will you write a code for accessing the length of an array without assigning it to another variable?
When is the “void” keyword used in a function?
Is c easier than java?
How do you convert strings to numbers in C?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Why cant I open a file by its explicit path?
What is define c?
What does %c mean in c?
What is the purpose of & in scanf?
if p is a string contained in a string?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What does the error 'Null Pointer Assignment' mean and what causes this error?