?? strings.c
字號(hào):
/* Chapter 7 - Program 2 */
main()
{
char name1[12],name2[12],mixed[25];
char title[20];
strcpy(name1,"Rosalinda");
strcpy(name2,"Zeke");
strcpy(title,"This is the title.");
printf(" %s\n\n",title);
printf("Name 1 is %s\n",name1);
printf("Name 2 is %s\n",name2);
if(strcmp(name1,name2)>0) /* returns 1 if name1 > name2 */
strcpy(mixed,name1);
else
strcpy(mixed,name2);
printf("The biggest name alpabetically is %s\n",mixed);
strcpy(mixed,name1);
strcat(mixed," ");
strcat(mixed,name2);
printf("Both names are %s\n",mixed);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -