?? readt.c
字號:
/* * file: readt.c * This program tests the 32-bit read_doubles() assembly procedure. * It reads the doubles from stdin. * (Use redirection to read from file.) */#include <stdio.h>#include "cdecl.h"extern int PRE_CDECL read_doubles( FILE *, double *, int ) POST_CDECL;#define MAX 100int main(){ int i,n; double a[MAX]; n = read_doubles(stdin, a, MAX); for( i=0; i < n; i++ ) printf("%3d %g\n", i, a[i]); return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -