?? doubincl.c
字號:
// doubincl.c -- include header twice
#include <stdio.h>
#include "names_str.h" // revised version of names_st.h
#include "names_str.h" // accidental second inclusion
int main()
{
names winner = {"Less", "Ismoor"};
printf("The winner is %s %s.\n", winner.first,
winner.last);
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -