最近的笔试让我倍受折磨,大家再帮忙看一下,怎么解释啊?
//中科方德笔试:选择:
typedef struct _TText
{
int status;
short* pData;
char errStr[32];
}Text;
Text text[16];
char* p=(char*)(text[2].errStr+32);
printf("%d\n",(p-(char*)(st)));//120
//编程:
写一个函数,它的原型是:int continumax(char* outputstr,char* inputstr);
功能:在字符串中找出连续最长的数字串,并把这个串的长度返回,并把这个最长数字串赋给其中一个函数参数outputstr所指内存.
例如:"abcd12345ed125ss123456789"的首地址传给inputstr后,函数将返回9,outputstr所指的值为123456789.