#include <iostream>
using namespace std;
int main()
{
char a[] = "test_string_space";
char *b = 0;
char *b2 = 0;
short i = 0;
//while (true)
{
b = a;
b2 = a;
i = 0;
while(b[i] != (0x20) )
cout << b[i++] <<"\t";
cout << endl << b << "\t" << b2 << endl;
}
return 0;
}