Converting int into char array.

Sorry ...
TheTargetArray > 'char strBuffer[]' will not work, you have to initialise the array first.

sizeof() will just report the whole array size not its contents.
The string object will do what you need, conversion, finding length and picking individual characters but it is apparently memory hungry.
That said you could easily step through any array with a simple loop.
Al