第3个回答 2008-10-13
#include <iostream>
using namespace std;
main()
{
char *str="abcdefg";
char a,b,c,d,e,f,g;
a=*str;
b=*(str+1);
c=*(str+2);
d=*(str+3);
e=*(str+4);
f=*(str+5);
g=*(str+6);
cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f<<" "<<g<<endl;
}