这是打印一个月提醒列表的程序。这是 KN King 书中的一个例子。我的问题是我不明白 strcmp 函数在这个程序中是如何工作的。
#include <stdio.h>
#include <string.h>
#define MAX_REMIND 50 /* Maximum number of reminders */
#define MSG_LEN 60 /* max length of reminders message */
int read_line(char str[], int n);
int main(void) {
char reminders[MAX_REMIND][MSG_LEN+3];
char day_str[3], msg_str[MSG_LEN+1];
int day, i, j, num_remind = 0;
for(;;) {
if(num_remind == MAX_REMIND) {
printf("--No space left--\n");
break;
}
printf("Enter day and reminder: ");
scanf("%2d", &day);
if(day == 0)
break;
sprintf(day_str, "%2d", day);
read_line(msg_str, MSG_LEN);
for(i = 0; i < num_remind; i++)
if(strcmp(day_str, reminders[i]) < 0)
break;
for(j = num_remind; j > i; j--)
strcpy(reminders[j], reminders[j - 1]);
strcpy(reminders[i], day_str);
strcat(reminders[i], msg_str);
num_remind++;
}
printf("\nDay Reminder\n");
for(i = 0; i < num_remind; i++)
printf(" %s\n", reminders[i]);
return 0;
}
int read_line(char str[], int n) {
int ch, i = 0;
while((ch = getchar()) != '\n')
if (i < n)
str[i++] = ch;
str[i] = '\0';
return i;
}
我的理解是,字符串存储在二维数组中,其中每一行都接受来自用户的字符串。该程序首先获取日期(来自用户的两位小数)并使用 sprintf() 函数将其转换为字符串。然后它将转换后的字符串日期与存储在提醒[][] 数组中的字符串进行比较。
我不明白它如何将日期与字符串进行比较。(在这种情况下它总是返回 true 并且每次都在 i = 0 处中断语句)。