const char *
char * const
What is the differnce between the above two?
Answer Posted / beula
const char * is the pointer to a consant variable.
char * constant is a constant pointer to a char.
Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What are the various compound assignment operators in c++?
What do you understand by a pure virtual member function?
Mention the ways in which parameterized can be invoked. Give an example of each.
Is c++ proprietary?
What is array give example?
What's the order in which the objects in an array are destructed?
How do I start a c++ project?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
How can you quickly find the number of elements stored in a static array?
What is c++ 11 and c++ 14?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
What is vectorial capacity?
How can we read/write Structures from/to data files?
Describe Trees using C++ with an example.
What is null and void pointer?