単語にインデックスを付けたいのですが、サイズ制限よりも小さい場合は、入力された単語に応じて配列のサイズを変更したい..これが私のコードです:
#include <stdio.h>
#define SIZE 10
int main(void)
{
int index;
char wordToPrint[SIZE];
printf("please enter a random word:\n");
for (index = 0; index < SIZE; index++)
{
scanf("%c", &wordToPrint[index]);
}
for (index = 0; index < SIZE; index++)
{
printf("%c", wordToPrint[index]);
}
return 0;
}
それを定義するには何を追加する必要がありますか?
tnx