Given the following code, what is the purpose of const? clas…
Given the following code, what is the purpose of const? class Recipe { /* Assume complete definition */};class CookBook { Recipe *recipeList;public: const Recipe* GetRecipeList();};const Recipe* CookBook::GetRecipeList() { return recipeList;}
Read DetailsGiven the following code, what is the purpose of const? clas…
Given the following code, what is the purpose of const? class Recipe { /* Assume complete definition */};class CookBook { Recipe *recipeList;public: const Recipe* GetRecipeList();};const Recipe* CookBook::GetRecipeList() { return recipeList;}
Read Details