codice://function addstr; char* addstr(char* str1, char* str2) { char* str3=new char[strlen(str1)+strlen(str2)]; strcpy( str3, str1); strcat( str3, str2); return str3; }
codice://function addstr; char* addstr(char* str1, char* str2) { char* str3=new char[strlen(str1)+strlen(str2)]; strcpy( str3, str1); strcat( str3, str2); return str3; }
01010011 01100001 01101101 01110101 01100101 01101100 01100101 01011111 00110111 00110000
All errors are undocumented features waiting to be discovered.