Possible Duplicate:
C++ concatenate string and int
I am tryinging to make use many strings and ints to make a single string but I am getting the message: "error C2110: '+' : cannot add two pointers"
This is my code:
transactions[0] = "New Account Made, Customer ID: " + ID + ", Customer Name : " + firstName + " " + secondName + endl + ", Account ID: " + setID + ", Account Name: " + setName;
(note that ID and setID is an int)