私はここの初心者です、そして私があなたたちからいくつかのレッスンを受けたいといういくつかの質問があります。例えば:
#include <stdio.h>
#include<stdlib.h>
#include<ctype.h>
void main()
{
char name[51],selection;
do
{
printf("Enter name: ");
fflush(stdin);
fgets(name,51,stdin);
printf("Enter another name?(Y/N)");
scanf("%c",&selection);
selection=toupper(selection);
}while (selection=='Y');
//I want to printout the entered name here but dunno the coding
printf("END\n");
system("pause");
}
ループが実行されると変数が上書きされることを知っているので、ユーザーが入力したすべての名前を出力するコーディングを実行するにはどうすればよいですか?私はすでに私の家庭教師に頼んでいて、彼は私にポインターを使うように頼んでいます、この場合誰かが私を導くことができますか?