下列给定程序中,函数fun的功能是:在形参SS所指字符串数组中查找与形参t所指字符串相同的串,找到后返回该串在字符串数组中的位置(即下标值),若未找到则返回一1。ss所指字符串数组中共有N个内容不同的字符串,且串长小于M。 请在程序的下划线处填入正确的内容

admin2020-11-27  18

问题 下列给定程序中,函数fun的功能是:在形参SS所指字符串数组中查找与形参t所指字符串相同的串,找到后返回该串在字符串数组中的位置(即下标值),若未找到则返回一1。ss所指字符串数组中共有N个内容不同的字符串,且串长小于M。
请在程序的下划线处填入正确的内容并将下划线删除,使程序得出正确的结果。
注意:部分源程序在文件BLANK1.C中。
不得增行或删行,也不得更改程序的结构!
    #include
    #include
    #define N 5
    #de6ne M 8
    int fun(char(*ss)[M],char*t)
    {  int i;
    /**********found**********/
    for(i=0;i<一[1 1;i++)
    /**********found**********/
    if(strcmp(ss,t)==0)retum一[2];
    retum一1;
    }
    main()
    {char ch[N][1]={"if",“while”,“switch”,“int”,“for”},t[M];
    int n,i;
    prinff(“\nThe original string\n\n”);
    for(i=0;i);
    prinff(“\n”);
    prinff(“\nEnter a string for search:”);gets(t);
    n=fun(ch,t);
    /**********found**********/
    if(1rl==一[3 1)prinff(“\nDon’t found!\n”);
    else prinff(“\nThe position is%d.\n”,n);
    }

选项

答案(1)N (2)i (3) 一1

解析
转载请注明原文地址:https://kaotiyun.com/show/n43p777K
0

最新回复(0)