新手,关于sprintf的有关问题
新手求助,关于sprintf的问题.
const char* postData[64]={0};
sprintf(postData,"%s=%s",name,pass);//这行在Xcode6里提示No matching function for call to "sprintf"错误
------解决思路----------------------
没有包含头文件吗?
const char* postData[64]={0};
sprintf(postData,"%s=%s",name,pass);//这行在Xcode6里提示No matching function for call to "sprintf"错误
------解决思路----------------------
没有包含头文件吗?