我剛剛開始C編程,並試圖做一個練習,其中您將(主)中的幾個字符串讀入一個函數,在該函數中可以找到每個字符串中的單詞和字符長度,主)在每個字符串中打印字數和字符數。我不完全確定如何做到這一點。例如..如何將多個字符串傳遞到函數來處理
#include <stdio.h>
void convert(char s[]), int counts[]);
int main(void)
{
char text1[] = "this IS a String 4 you.";
char text2[] = "This sample has less than 987654321 leTTers."
char text3[] = "Is thIs a string? (definitely)"
void convert(char s[]), int counts[])
{
"""code that reads each string and counts words and characters returning
an array of characters like a[] = {3,5} each number telling how many words
and characters the string has"""
}
如何爲函數添加更多的輸入參數? – moeCake
先刪除額外的''''。 – herohuyongtao
爲什麼?創建函數計算一個字符串中的單詞(返回一個int)。在一個字符串中創建另一個計數字符(也返回一個int)。然後循環你的字符串並調用這些函數。 – LumpN