我是这里的新手,有一些问题想从你们那里得到一些教训。例如:
#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");
}
据我所知,循环何时执行会覆盖变量,那么我如何执行编码以打印出用户输入的所有名称?我已经问过我的导师,他要求我使用指针,在这种情况下有人可以指导我吗?