服务器之家

服务器之家 > 正文

C语言实现txt数据读入内存/CPU缓存实例详解

时间:2021-04-25 14:33     来源/作者:jingxian

摘要

C实现将txt数据读入内存/CPU缓存的函数,不多说,实现如下。

1. 实现代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
 
int filelength(FILE *fp);
char *readfile(char *path);
 
 
int main(void){
  char *string;
 
  string=readfile("C:/Users/Joe WANG/Desktop/Data.txt");
  printf("数据读入内存完毕! \n");
  printf("内存中的数据如下:\n%s \n",string);
  system("pause");
   
  return 0;
}
 
char *readfile(char *path){
  FILE *fp;  
  int length;
  char *ch;
   
  if((fp=fopen(path,"r"))==NULL){
    printf("open file %s error.\n",path);
    exit(0);
  }
  length=filelength(fp);
  ch=(char *)malloc(length);
  fread(ch,length,1,fp);
  *(ch+length)='\0';
   
  return ch;
}
 
int filelength(FILE *fp){
  int num;
   
  fseek(fp,0,SEEK_END);
  num=ftell(fp);
  fseek(fp,0,SEEK_SET);
   
  return num;
}

2. Data.txt中的源数据

C语言实现txt数据读入内存/CPU缓存实例详解

3. 测试结果

C语言实现txt数据读入内存/CPU缓存实例详解

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
返回顶部