Data Types C++ Tutorial

#include 
using std::cout;
using std::endl;
#include 
using std::strtok;                        
int main()
{
   char sentence[] = "a c d e f g e a c d e y gb ";
   char *tokenPtr;
   tokenPtr = strtok( sentence, " " );
   while ( tokenPtr != NULL ) 
   {
      cout << tokenPtr << '\n';
      tokenPtr = strtok( NULL, " " );
   }
   return 0;
}
a
c
d
e
f
g
e
a
c
d
e
y
gb