- 论坛徽章:
- 0
|
#include "stdafx.h"
#include "conio.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "ctype.h"
int _tmain(int argc, _TCHAR* argv[])
{
FILE *fp;
FILE *fp2;
char ch[100];
char filename[100];
char filename2[100];
char address[100];
int count = 0;
int i,l,tmp;
if(argc!=1){
printf("The 1st argument is file address");
printf("The 2nd argument is file name");
printf("For Example. transfer.exe C:\\ C:\\test.txt \n",argv[0]);
}
else{
strcpy(address,argv[1]);
strcpy(filename,argv[2]);
}
但是在编译的时候 总是报错error C2664: “strcpy”: 不能将参数 2 从“_TCHAR *”转换为“const char *”
与指向的类型无关;转换要求 reinterpret_cast、C 样式转换或函数样式转换
请问这个问题怎么解决 |
|