#include<stdlib.h> // 这个是C标准库,与linux无关。这套函数是通用
long int strtol(const char *nptr, char **endptr, int base);
long long int strtoll(const char *nptr, char **endptr, int base);
unsigned long int strtoul(const char *nptr, char …
如果GET请求带参数,那么一般是附加在请求的url后面,参数与参数之间使用&分割,例如请求http://www.hootina.org/index_2013.php?param1value1m2value2m3value3,我们看下这个请求组装的的http协议包格式:
GET /ind…