📄 test.c
字号:
/* * =========================================================================== * PRODUCTION $Log: test.c,v $ * PRODUCTION Revision 1000.0 2003/10/29 20:35:29 gouriano * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1 * PRODUCTION * =========================================================================== */#include <sys/types.h>#include <sys/time.h>#include <time.h>#include <signal.h>main(){ int i; hrtime_t start, end; time_t t; start= gethrtime(); for(i= 0x100000; i--; ) { signal (SIGPIPE, SIG_IGN); /*t= time(NULL);*/ i=i; } end= gethrtime(); printf("Execution time: %f\n", (end-start)/1000000.0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -