?? stdio.h
字號:
/* *----------------------------------------------------------------------------- * Copyright (c) KEIL ELEKTRONIK GmbH and Franklin Software, Inc., 1987-1992 *----------------------------------------------------------------------------- *//* STDIO.H: prototypes for standard i/o functions V3.00 */#ifndef EOF #define EOF -1#endif#pragma SAVE#pragma REGPARMSextern char _getkey (void);extern char getchar (void);extern char ungetchar (char);extern char putchar (char);extern int printf (const char *, ...);extern int sprintf (char *, const char *, ...);extern char *gets (char *, int n);extern int scanf (const char *, ...);extern int sscanf (char *, const char *, ...);extern int puts (const char *);#pragma RESTORE
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -