I have multiple int variables , each int is about 4 to 6 digits.
I want to combine them into one big string (char *) and add symbol '>' in between each integers
which would be some thing like :
int a = 123456, b = 2244, c = 23456, d = 54321;
char * str;
and out put string would be like this : 123456>2244>23456>54321\0