好心人帮忙下
#include "string.h"#include "stdio.h"
#include "stdlib.h"
#include "io.h"
#include "math.h"
#include "time.h"
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define MAXSIZE 100
char string[MAXSIZE+1];
int strassign(string t,char *chars) //char *chars是将字符串的首地址复制进去的吗?
{
int i;
if(strlen(chars)>MAXSIZE)
{
return ERROR;
}
else
{
t[0]=strlen(chars); //这是将一个字符复制进去还是一整个字符串复制进去啊????
for(i=1;i<=t[0];i++)
{
t[i]=*(chars+i-1); //这个是什么看的 谁能说下?
}
return OK;
}
}
int main()
{
int i,*p;
string s1,s2;
strassign(s1,"abcdex"); //生成s1串中的字符,将字符串给s1
}