Я пытаюсь заменить цикл, содержащий повторяющиеся вызовы getchar, одним вызовом fgets
Когда я пытаюсь ввести ввод, я получаю ошибку сегментации (сбрасывается ядро), и я не знаю, что это такоеили почему я его получаю.
Код стартера
/* Example: analysis of text */
#include <stdio.h>
#include <string.h>
#define MAX 1000 /* The maximum number of characters in a line of input */
main()
{
char text[MAX], c;
int i;
int lowercase, uppercase, digits, other;
int length;
puts("Type some text (then ENTER):");
/* Save typed characters in text[]: */
// In ex1.c, please implement the following loop with fgets() and use strlen() to compute the length of the string
//
for (i = 0; i < MAX; i++)
{
text[i] = getchar();
if (text[i] == '\n')
break;
}
length = i;
/* Analyse contents of text[]: */
for (i = lowercase = uppercase = digits = other = 0; i < MAX; i++)
{
c = text[i];
if (c >= 'a' && c <= 'z')
lowercase++;
else if (c >= 'A' && c <= 'Z')
uppercase++;
else if (c >= '0' && c <= '9')
digits++;
else
{
if (c == '\n')
break;
other++;
}
}
puts("\nYou typed:");
printf("A string with %d characters\n", length);
printf("\t%d lower case letters\n", lowercase);
printf("\t%d upper case letters\n", uppercase);
printf("\t%d digits\n", digits);
printf("\t%d others\n", other);
}
Тест кода стартера
Type some text (then ENTER):
asd213qaIW
You typed:
A string with 10 characters
5 lower case letters
2 upper case letters
3 digits
0 others
Мой код
/* Example: analysis of text */
#include <stdio.h>
#include <string.h>
#define MAX 1000 /* The maximum number of characters in a line of input */
main()
{
char text[MAX], c;
int i;
int lowercase, uppercase, digits, other;
int length;
puts("Type some text (then ENTER):");
/* Save typed characters in text[]: */
// In ex1.c, please implement the following loop with fgets() and use strlen() to compute the length of the string
//
c = fgets(text, MAX, stdin);
length = strlen(c);
/* Analyse contents of text[]: */
for (i = lowercase = uppercase = digits = other = 0; i < MAX; i++)
{
c = text[i];
if (c >= 'a' && c <= 'z')
lowercase++;
else if (c >= 'A' && c <= 'Z')
uppercase++;
else if (c >= '0' && c <= '9')
digits++;
else
{
if (c == '\n')
break;
other++;
}
}
puts("\nYou typed:");
printf("A string with %d characters\n", length);
printf("\t%d lower case letters\n", lowercase);
printf("\t%d upper case letters\n", uppercase);
printf("\t%d digits\n", digits);
printf("\t%d others\n", other);
}
Мой тест кода
Type some text (then ENTER):
asd213qaIW
Segmentation fault (core dumped)
Любая и вся помощь очень ценится.
Я также очень плохо знаком сC, так что, если бы вы могли объяснить как можно проще.
Изменение length = strlen(c);
на length = strlen(text);
исправило это.Спасибо!