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

📄 t2.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;	fd=open("/tmp/scores", O_RDONLY);	if (fd==-1) {		perror("open()");		exit(1);	}	score=mmap(NULL, sizeof(struct score_st)*32, PROT_READ, MAP_PRIVATE, fd, 0);	if (score==MAP_FAILED) {		perror("mmap()");		exit(1);	}	close(fd);	for (i=0;i<32;++i) {		printf("Name: %s\tMath=%d\tChinese=%d\n", score[i].name, score[i].math, score[i].chinese);	}	mummap(score, sizeof(struct score_st)*32);	exit(0);}

⌨️ 快捷键说明

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