为什么只得到了一个字符
#include <iostream>
#include "stdafx.h"
#include <string.h>
#include <errno.h>
#include <conio.h>
#include <ctype.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <wchar.h>
int _tmain(int argc, char* argv[])
{
char* qrText="http://www.test.org/index.htm";
char* qrText2="";
if (argc != 2)
{
printf("参数错误,文件名\n");
exit(EXIT_FAILURE);
}else{
qrText2=argv[1];
cout<<qrText<<endl;
cout<<qrText2<<endl;
}
return 0;
}