乐观抽屉

文章
4
资源
0
加入时间
2年10月24天

C语言删除字符串中的某个字符

#include #include int main(){ char *s = "changzhi"; int i, j; char data[100] = {0}; strcpy(data, s); for(i = 0, j = 0; data[i] != '\0'; i++){ if(data[i] != 'h'){

文件服务器配置

Nginx中: server { listen 80; #端口 server_name fota.localhost.com; #服务名 location /download { #add_header Content-Disposition: 'atta...