strcat()问题
由使用strcat()而引起的警告,怎样去掉?谢谢!我的这个程序大量使用了这个函数,从而引起了大量警告,先谢谢大家,帮忙看看啊!
char Zong[200]={"Provider=OraOLEDB.Oracle.1;Password="};
GetDlgItem(IDC_EDIT1)->GetWindowText(Name_DB);
GetDlgItem(IDC_EDIT2)->GetWindowText(Name);
GetDlgItem(IDC_EDIT3)->GetWindowText(Password);
strcat(Zong,Password);
strcat(Zong,";Persist Security Info=True;User ID=");
strcat(Zong,Name);
strcat(Zong,";Data Source=");
strcat(Zong,Name_DB);