⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 t1.c

📁 linux源代码
💻 C
字号:
#include <stdio.h>#include <fcntl.h>#include <sys/mman.h>#define NAMESIZE 32struct score_st {	char name[NAMESIZE];	int math;	int chinese;};intmain(){	int i;	int fd;	struct score_st score[32];	fd=open("/tmp/scores", O_WRONLY|O_CREAT|O_TRUNC, 0600);	if (fd==-1) {		perror("open()");		exit(1);	}	for (i=0;i<32;++i) {		snprintf(score[i].name, NAMESIZE, "stu%d", i+1);		score[i].math=rand()%101;		score[i].chinese=rand()%101;	}	write(fd, score, sizeof(struct score_st)*32);	close(fd);	exit(0);}

⌨️ 快捷键说明

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