CでindexOf関数を作成しようとしています。関数は、パラメーターで指定された文字または単語の位置を見つける必要があります。しかし、それらを使用しようとすると、コンパイラは「引数が少なすぎます」と警告しました。どうやってやるの?ありがとう。
#include<stdio.h>
#include<conio.h>
#include<string.h>
int indexOf(char*, char*, char);
int main(){
char stuff[] = "abcdefghijklmopqrstuvwxyz";
printf("Result: %d", indexOf(stuff, 'b') );
printf("Result: %d", indexOf(stuff, "defg") );
getch();
return 0;
}
int indexOf(char *text, char *word, char letter){
if(word == DEFAULT VALUE)
// find the letter in the text
else if(letter == DEFAULT VALUE)
// find the word in the text
}