char dong[100];
sprintf(dong,"%s","dongshen");
CCLOG(dong);
以上正确
char dong[100];
sprintf(dong,"%s","dongshen");
CCLOG(dong);
以下错误。
char dong[100];
sprintf(dong,"%s","dongshen");
CCLOG(dong);
以上正确
char dong[100];
sprintf(dong,"%s","dongshen");
CCLOG(dong);
以下错误。