我是新手请大家帮忙啊这个程序怎么改啊
#include<iostream.h> #include<string.h> void function(char *str)
{*str=A; char buffer[16]; strcpy(buffer, str); }; void main() { int I;
char buffer[128]; for(I=0; I<127; I++) buffer[I]=A; buffer[127]=0; function(buffer); cout<<"This is a test"<<endl; }