我在arduino中有这个代码
void function(int x){
char* response="GET /postTEST.php?first=";
char strx[2] = {0};
int num = x;
sprintf(strx, "%d", num);
original=response;
strcat(response,strx);
Serial.println(response);
//memset(response,'\0',80);
}
基本上,它是将一个整数加入我的帖子字符串。不幸的是,当我增加 i 时,它会以某种方式增长并变成 GET /postTEST.php?first=0 GET /postTEST.php?first=01 GET /postTEST.php?first=012。
怎么来的?