transactionInfo = date + " - " + _strtime( time ) + "New Customer - 1001 - Olly";
Ok so I've been trying to find it everywhere in C++ reference guides but it seems I can't do the above ^^ (says I cannot add 2 pointers).
date is a char[10] and time is char[9], plus the other 2 stringy bits.
I know + can be used as an operator with strings (but usually like string1 += string2) or whatever but not as I want it to be used...
Anyone? :)