const char *
char * const
What is the differnce between the above two?
Answer Posted / chithra
const char* is a constant pointer and char * const is
poiter to constant.
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
What is split a string in c++?
Is java made in c++?
Differentiate between declaration and definition.
What are iterators in c++?
What is ios class in c++?
What is a binary file? List the merits and demerits of the binary file usagein C++.
What is the use of setprecision in c++?
Write a Program to find the largest of 4 no using macros.
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
Is oops and c++ same?
What is the benefit of c++?
What are arrays c++?
Is c++ a dying language?
What is algorithm in c++ programming?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h