include<stdio.h> void reverse(int *num,int n){ int i,temp;for(i=0;i<n/2;i++){ temp = num[i];num[i] = num[n-1-i];num[n-1-i] = temp;} } void main(){ int i,n,*num;printf("数组长度:");scanf("%d",&n);num = new int(n);for(i=0;i<n;i++){ ...
先理解一下strtok这个函数的功能,函数原型 char* strtok(char* s, const char* delim)它的第一个输入参数是需要处理的字符,第二个输入参数是分隔符,返回值是分割后的字符串。比如第一个参数输入“I am a good boy”,第二个参数是“ ”(空格);strtok(I am a good boy”, " ");则返回...