标签:des style color os io for ar cti
#include <cstring>
void function(char *str)
{
char buffer[16];
strcpy(buffer,str);
}
int main()
{
char large_string[256];
int i;
for( i = 0; i < 255; i++)large_string[i] = ‘A‘;
function(large_string);
return 0;
}
标签:des style color os io for ar cti
原文地址:http://www.cnblogs.com/killerlegend/p/3916984.html