1、system函数:
原型:int system(const char * command);
功能:执行 dos(windows系统) 或 shell(Linux/Unix系统) 命令,参数字符串command为命令名
说明:在windows系统中,system函数直接在控制台调用一个command命令。在Linux/Unix系统中,system函数会调用fork函数产生子进程,由子进程来执行command命令,命令执行完后随即返回原调用的进程;
头文件:stdlib.h;
返回值:命令执行成功返回0,执行失败返回-1。
2、例程:
#include<stdio.h>#include<stdlib.h>
int main(){
system("del C:\\123.txt")//在控制台中,执行命令del C:\\123.txt,删除C盘目录下的123.txt文件
return 0
}
#include <time.h>time_t now //加 time_t 型
now=time(NULL) // 获取当前时间。
printf("%s",ctime(&now)) // 很容易输出。
加结构成员:
struct student
{ int id
char name[100]
int score
time_t now
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)