:) 原码?
#include <stdio.h>
#include <string.h>
char xx[] = "abcdefghijklmnopqrst";
int main()
{
char c, tmp;
int i , len;
printf("old string: %s\n", xx);
len = strlen(xx) - 1;
tmp = xx[len];
for (i = len; i > 0; i--)
{
c = xx[i];
xx[i] = (c >> 4) + xx[i - 1];
}
xx[0] = (xx[0] >> 4) + tmp;
printf("new string: %s\n", xx);
return 0;
}
中的 #include <stdio.h>
#include <string.h>
是什么意思,书上只说是函数头,可究竟是什么意思、有何作用?请各位前辈指点

