写c初始模版

//

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define ElemType int
#define MaxSize 50


// 函数声明区域


int main() {
    time_t t;
    srand((unsigned) time(&t)); // 初始化随机种子
    printf("
开始了
");

    printf("

");     //输出空两行

    printf("
结束了
");
    return 0;
}
原文地址:https://www.cnblogs.com/gallien/p/13752755.html