int main()
{
int len=0
int len2=0
FILE* stream
FILE* stream1
FILE* stream2
char buf[50]
char buf1[50]
char buf2[50]
char text[1024]
printf("input anfile path to open:")
scanf("铅滚%s",buf)
stream=fopen(buf,"r+")
fseek(stream,0,SEEK_END)
len=ftell(stream)
printf("the file %s length is %d!\n",buf,len)
len2 = len/2
printf("intput 2 file name: \n")
scanf("%s%s",buf1,buf2)
fseek(stream,0,SEEK_SET)
stream1=fopen(buf1,"w+")
stream2=fopen(buf2,"w+")
fread(text,len2,1,stream)
fwrite(text,len2,1,stream1)
fread(text,len-len2,1,stream)
fwrite(text,len-len2,1,stream2)
fclose(stream)
fclose(stream1)
fclose(stream2)
return 0
}
文件合并
#include<stdio.h>
int main()
{
int len=0
int len2=0
FILE* stream
FILE* stream1
char buf[50]
char buf1[50]
char text[1024]
printf("input anfile path to open:")
scanf("%s",buf)
stream=fopen(buf,"乱激唤r+")
fseek(stream,0,SEEK_END)
printf("哗凯intput another file name: \n")
scanf("%s",buf1)
stream1=fopen(buf1,"r+")
fseek(stream1,0,SEEK_END)
len=ftell(stream1)
fseek(stream1,0,SEEK_SET)
fread(text,len,1,stream1)
fwrite(text,len,1,stream)
fclose(stream)
fclose(stream1)
remove(buf1)//remove the another file
return 0
}
需要在程序目录下有文件存在
假设你有4个摄像头(都是一个厂家生产的,故API相同)。在MFC中建立单文档应哗世判用程式,注意选择分割窗口模式(splitter window)。
单文档有一个View Class,你再新建3个View Class,方便同返斗时显示4个实时视频信号
在Frame类中完成视图和ViewClass的绑定。
分别在每一个View类的OnDraw函数中刷新对应摄像头视频讯号。
我的博客中,分享了一个C++写的模拟电视系统源码,里面有分割窗口,显示乱改。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)