?? names_st.c
字號:
// names_st.c -- define names_st functions
#include <stdio.h>
#include "names_st.h" // include the header file
// function definitions
void get_names(names * pn)
{
int i;
printf("Please enter your first name: ");
fgets(pn->first, SLEN, stdin);
i = 0;
while (pn->first[i] != '\n' && pn->first[i] != '\0')
i++;
if (pn->first[i] == '\n')
pn->first[i] = '\0';
else
while (getchar() != '\n')
continue;
printf("Please enter your last name: ");
fgets(pn->last, SLEN, stdin);
i = 0;
while (pn->last[i] != '\n' && pn->last[i] != '\0')
i++;
if (pn->last[i] == '\n')
pn->last[i] = '\0';
else
while (getchar() != '\n')
continue;
}
void show_names(const names * pn)
{
printf("%s %s", pn->first, pn->last);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -