
08.08.2007, 19:31
|
|
Участник форума
Регистрация: 09.02.2004
Сообщений: 122
Провел на форуме: 1089794
Репутация:
134
|
|
Satell, всё пашет. Вот, например, проверь так:
Код:
#include <iostream.h>
#include <string.h>
int main()
{
char setpath[]="http://";
char* tmp=new char[800];
strcpy(tmp,setpath);
strcat(tmp,"www.google.com");
cout << "tmp=" << tmp;
delete tmp;
return 0;
}
|
|
|