51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#找不到文件
文件操作(二进制拷贝)
#include<stdio.h>#include<string.h>#include<stdlib.h>//typedefunsignedintsize_t;intmain(){FILE*p=fopen("./a.txt","r");FILE*p1=fopen("./b.txt",...
代码星球
·
2020-04-08
文件
操作
二进制
拷贝
文件操作(二进制读写)
/***a.txt***/thisisawordhelloworld/***file.c***/#include<stdio.h>#include<stdlib.h>#include<string.h>intmain(){FILE*p=fopen("./a.txt","r");whi...
代码星球
·
2020-04-08
文件
操作
二进制
读写
文件操作(升级)
计算字符串“25+32=”#include<stdio.h>#include<string.h>intcalc_string(char*s){charbuf1[100]={0};charoper=0;charbuf2[100]={0};intlen=strlen(s);i...
代码星球
·
2020-04-08
文件
操作
升级
文件操作函数(读写)
文件文本排序: 数组冒泡:#include<stdio.h>voidswap(int*a,int*b){inttemp=*a;*a=*b;*b=temp;}voidbubble(int*p,intn){inti;intj;for(i=0;i<n;i++){for(j=1;j<n-i;j...
代码星球
·
2020-04-08
文件
操作
函数
读写
文件操作函数
fopen()函数参数:r只读的方式打开文件。打开成功返回文件指针,打开失败返回NULLr+以读写方式打开文件。文件必须存在rb+以二进制模式读写文件,文件必须存在rw+读写一个二进制文件,允许读和写w打开只写文件,若文件存在,则文件长度清零,若文件不存在,则创建该文件w+打开读写文件,若文件存在,则文件长度清零,若文...
代码星球
·
2020-04-08
文件
操作
函数
文件操作(解密加密)
文件加密:#include<stdio.h>#include<string.h>#include<stdlib.h>voidcode(char*s){while(*s){(*s)++;s++;}}intmain(){chars[1024]={0};FILE*p=fopen("/hom...
代码星球
·
2020-04-08
文件
操作
解密
加密
文件操作(读)
读一行:#include<stdio.h>#include<string.h>#include<stdlib.h>constintmaxn=10;intmain(){chars[1024]={0};FILE*p=fopen("/home/exbot/wangqinghe/C/2019...
代码星球
·
2020-04-08
文件
操作
文件操作(写)
/***file.c***/#include<stdio.h>intmain(){//用写的方式打开一个文件//w的意思是文件如果不存在,就建立一个文件,如果文件存在就覆盖FILE*p=fopen("/home/exbot/wangqinghe/C/20190716/file1.txt","w");fput...
代码星球
·
2020-04-08
文件
操作
Makefile文件试错
1成功:src=$(wildcard./*cpp)obj=$(patsubst%.cpp,%.o,$(src))target=test$(target):$(obj)g++$(obj)-o$(target)-I/usr/include/mysql-L/usr/lib/mysql/-lmysqlclient%.o:%.c...
代码星球
·
2020-04-08
Makefile
文件
试错
Make文件(一)
基本规则:目标:依赖(tab)规则 目标:需要生成的目标文件依赖:生成该目标所需的一些文件规则:由依赖文件生成目标文件的手段tab:每条规则前必须以tab开头,使用空格不行。 例如:/**test.c**/#include<stdio.h>intmain(){printf(&...
代码星球
·
2020-04-08
Make
文件
make文件基础用法
参照:https://www.jianshu.com/p/0b2a7cb9a469创建工作目录,包含一下文件main.cperson.cb.hc.h/***c.h***///thisisc.h/***b.h***///thisisb.h/***main.c***/#include<stdio.h>//#in...
代码星球
·
2020-04-08
make
文件
基础
用法
如何把百度统计代码放入JS文件中?百度统计的JS脚本原理分析
<script>var_hmt=_hmt||[];(function(){varhm=document.createElement("script");hm.src="https://hm.baidu.com/hm.js?68df874fd78fd8f5cdv45fd470a49b12";vars=docu...
代码星球
·
2020-04-08
百度
统计
JS
如何
代码
Vue打包后出现一些map文件
问题:可能很多人在做vue项目打包,打包之后js中,会自动生成一些map文件,那我们怎么把它去掉不要呢? 1,运行 cnpmrunbuild 开始打包2,会在项目目录下自动创建dist目录,打包好的文件都在其中 解决办法: 去src/config...
代码星球
·
2020-04-08
Vue
打包
出现
一些
map
Hive支持的文件格式和压缩格式及各自特点
Hive中的文件格式1-TEXTFILE文本格式,Hive的默认格式,数据不压缩,磁盘开销大、数据解析开销大。对应的hiveAPI为:org.apache.hadoop.mapred.TextInputFormat和org.apache.hive.ql.io.HiveIgnoreKeyTextOutputFormat;...
代码星球
·
2020-04-08
格式
Hive
支持
文件
压缩
Linux中,Root用户给其他用户赋文件夹的权限
chown-R用户名文件夹路径...
代码星球
·
2020-04-08
用户
Linux
Root
其他
文件夹
首页
上一页
...
293
294
295
296
297
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他