#include <stdlib.h>磨数举
char CopyFile()//申明函数
void main()
{
system("mkdir C:\\aa")//瞎碧创建文件夹
CopyFile()
}
char CopyFile()
{
FILE *fp1,*fp2
char c
char source[20],destine[20]
printf("please input source filename:")
scanf("%s",source)
if((fp1=fopen(source ,"r"))==NULL)
{
printf("error opening file %s\n",source)
exit(0)
}
if((fp2=fopen(destine ,"w"))==NULL)
{
printf("error opening file %s\n",destine)
exit(0)
}
while(!feof(fp1))
{
c=fgetc(fp1)
fputc(c,fp2)
}
printf("\毕郑nok!\n")
fclose(fp1)
fclose(fp2)
return c
}
C语言写带安装向导的程序要用到SDK里面的东西,自己写打包程序。不象VB和
Visual
Foxpro
带旁塌大有工具。
写注册表运竖信息用mfc,或先建衫尺文件,再调REGEDIT弄进去。
dll写法类似一般程序,但要加一些
dll出口/进口的东西。
哪方面的知识:
C++,SDK,mfc,dll等。
比较难(麻烦)的是SDK。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)