【简答题】下列给定程序中,函数fun的功能是:求ss所指字符串数组中长度最短的字符串所在的行下标,作为函数值返回,并把其串长放在形参n所指的变量中。ss所指字符串数组有M个字符串,且串长小于N。 #include #define M 5#define N 20int fun(char (*ss)[N], int *n){ int i, k=0, len= N; for...
【简答题】给定程序中,函数fun的功能是:求出形参ss所指字符串数组中最长字符串的长度,将其余字符串右边用字符*补齐,使其与最长的字符串等长。ss所指字符串数组有M个字符串,且串长小于N。#include #include #define M 5#define N 20void fun(char (*ss)[N]){ int i, j, n, len=0; for(i=...
【简答题】下列给定程序中,函数fun的功能是:求ss所指字符串数组中长度最短的字符串所在的行下标,作为函数值返回,并把其串长放在形参n所指的变量中。ss所指字符串数组有M个字符串,且串长小于N。 #include #define M 5#define N 20int fun(char (*ss)[N], int *n){ int i, k=0, len= N;/*****...
【简答题】下列给定程序中,函数fun的功能是:求ss所指字符串数组中长度最短的字符串所在的行下标,作为函数值返回,并把其串长放在形参n所指的变量中。ss所指字符串数组有M个字符串,且串长小于N。 #include #define M 5#define N 20int fun(char (*ss)[N], int *n){ int i, k=0, len= N; for...