This page can be found at: bit.ly/141groups
Follow the link below to find the Google group that corresponds to your lab section:
Starting code:
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char text1[]="All generalizations ";
char text2[]="are false";
char first[ 81];
char *pWord;
char *pointerToZ = myStrChr( text1, 'z'); // should return a char *
cout << pointerToZ << endl; // Should print: zations
return 0;
}