funtc115b.dat

来自「指令字典2005里面可以方便的查找一些函数」· DAT 代码 · 共 16 行

DAT
16
字号
#include <time.h>
#include <stdio.h>
#include <dos.h>
#include <conio.h>
int main(void)
{
    time_t first, second;
    clrscr();
    first = time(NULL);
    delay(2000);
    second = time(NULL);
    printf("The difference is: %f seconds",difftime(second,first));
    getch();
    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?