I'm converting an old executable to a dll. I'm new to
C++ and need to figure out how to concatenate and assign values to a variable.
For example, the old code looks like this:
scrn<<"A valence of "<<bcount[j]<<" on "<<atsymb[attype]<<" is too high for atom "<<j<<"\n";
I need to put this into a variable. I haven't found much documentation on this, so any help would be appreciated.
C++ and need to figure out how to concatenate and assign values to a variable.
For example, the old code looks like this:
scrn<<"A valence of "<<bcount[j]<<" on "<<atsymb[attype]<<" is too high for atom "<<j<<"\n";
I need to put this into a variable. I haven't found much documentation on this, so any help would be appreciated.