How to add spaces in between characters in a char array without using builtin fuctions
Input- "java"
output-" j a v a"
That is inserting a space in between two characters in a char array
In a char array without using any built in functions like append. if possible provide the code also