I can't get this to work for the life of me.
I expect this to work but it does not.
Any help?
int i = 1;
int letter = 65;
osstream ss;
ss << i;
ss << char(65);
I expect this to work but it does not.
Any help?
int i = 1;
int letter = 65;
osstream ss;
ss << i;
ss << char(65);
Comment