Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Develop a solid understanding of C-strings, and how each std::string object is a wrapper around a C string Practice with pointer operations in C++, e.g.

  • Develop a solid understanding of C-strings, and how each std::string object is a wrapper around a C string

  • Practice with pointer operations in C++, e.g. dereferencing, treating them as arrays (and vice versa), etc.

You may not use any #include directives. Rather, take this opportunity to write pure C++, without the use of any library functions/classes/etc. #ifndef CS19_C_STRINGS_H_ #define CS19_C_STRINGS_H_ namespace cs19 {
/** * Searches a C-string for any of a set of characters. * * @param haystack the string to search * @param char_list a string containing the set of characters for which to search * @return a pointer to the char in haystack that matches one of the chars in char_list, or nullptr * if no such char is found. */ const char *strpbrk(const char *haystack, const char *char_list) { // TODO } /** * Finds the last occurrence of a character in a string. * * @param haystack the string to search * @param needle the char to search for * @return a pointer to the last char in haystack that matches needle, or nullptr if no such char is * found. */ const char *strrchr(const char *haystack, const char needle) { // TODO }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

=+Which associations exist?

Answered: 1 week ago