Hi,

Is there a difference between those 2 statements:

str1 = new char[50];
and
str2 = new char(50);

both str1 and str2 were defined like this:
char* str1=null;
char* str2= null;

Thanks
Avi