Hello,
my name is Victor, i just join the group today.

I came to C++ 'by force'. Basically i'm a PHP and C Programmer. Recently my 
friend ask me to learn a new C derivative language, call MetaQuotes Languages 
(MQL).. it is an easier task for me. 

The hard part is when part of the code would like in DLL form (i use visual 
studio 2008). So 'by force' i must learn C++ and find plenty difficulties like 
pointer and etc. I hope this group is where the place i will familiar with C++ 
faster.

Regarding pointer, i would like to ask for good reference to understand pointer 
in C++ better because i had a lot of problem handling string (handling char and 
char*) , is there more "dirty" way to do it, like having:

char *theText="this is "+ " the Text "+" i made";

rather than
char *theText="this is ";
char result[100];
strcpy(result,theText);
strcat(result," the Text");
strcat(result," i made");




Reply via email to