anh xem thử bài tập 2 của em với, em in ra thấy nó hoạt động tốt
#include <stdio.h>
#include <stdlib.h>
int main()
{
char c;
char ten[20];
printf("Nhap ten, enter de ket thuc\n");
//int i = 0;
while (c != '\n') {
c = scanf("%s",ten);
break;
//ten[i]=c;
//i++;
}
//ten[i]=0;
printf("xin chao %s\n",ten);
return 0;
}