const char *
char * const
What is the differnce between the above two?
Answer Posted / sowmya.....
const char * is a constant pointer but,....
char * const is a pointer to constant
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Array base access faster or pointer base access is faster?
What are the implicit member functions of class?
Why is the function main() special?
Can you sort a set c++?
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
Will the following program execute?
What is the difference between reference and pointer?
What are the main features of c++?
Differentiate between realloc() and free().
Is c the same as c++?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
Difference between struct and class in terms of access modifier.
Can a program run without main?
When should we use multiple inheritance?
What character terminates all character array strings a) b) . c) END