#include #include using namespace std;int main(){ char string1[ 15 ] = "BBBBBBBBBBBBBB"; cout << "string1 = " << string1 << endl; cout << "string1 after memset = " << (char *) memset( string1, 'b', 7 ) << endl; return 0;}