标签:
1 char pp[100]; 2 char *kl = pp; 3 strcpy(kl,"23456"); 4 kl += 7; 5 strcpy(kl,"abcde"); //this will not show,because 0 is before them 6 cout << pp << "33" << endl; 7 //cout << pp+7 << "33" << endl;
标签:
原文地址:http://www.cnblogs.com/lijinping/p/5873481.html