Hi.
I am trying to merge 2 chars. in C but i don't know how to do it.
My code:
char dd[1], aa[2];
dd[0] = "2";
dd[1] = "3";
aa[] = dd[0] + dd[1];
So it aa[] should show: 23 but it gives error. Maybe i am doing it wrong. Please help. Also this is just demo code, i am actually inputting the values of dd[0] and dd[1] from user using getche() function
Thanks.