C Please Post Screenshot Code Running Working Thank Cs 150 C Strings Follow Instructions H Q37143631

In c++ please, post a screenshot of the code running andworking, thank you!

1 THE MYSTRCHR FUNCTION Write the function myStrChr(). The function has two parameters: a const char *s pointing to the first

/**
CS 150 C-Strings

Follow the instructions on your handout to complete the
requested function. You may not use ANY library functions
or include any headers, except for <cstddef> forsize_t.
*/
#include <cstddef> // size_t for sizes and indexes
#include <stdio.h>
#include <string.h>
///////////////// WRITE YOUR FUNCTION BELOW THIS LINE///////////////////////

///////////////// WRITE YOUR FUNCTION ABOVE THIS LINE///////////////////////
// These are OK after the function
#include <iostream>
#include <string>
using namespace std;

void CHECK(const char*, char, const string&);

void studentTests()
{
cout <<

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.