c++ Programming Glossary: the_string
const char * const versus const char *? http://stackoverflow.com/questions/4949254/const-char-const-versus-const-char here is the example code void print_string const char the_string cout the_string endl int main print_string What's up In the.. example code void print_string const char the_string cout the_string endl int main print_string What's up In the above code the parameter.. to print_string could have instead been const char const the_string . Which would be more correct for this I understand that the..
|