#include #define MAX_LEN 10 int main(void) { char lecturer_name[MAX_LEN]; fgets(lecturer_name, MAX_LEN, stdin); int i = 0; while (i < MAX_LEN) { printf("%c", lecturer_name[i]); i++; } printf("\n"); return 0; }