If you make it char instead of int you may print the chars as text. Otherwise you will get the binary representation of the characters.
An array of char will take half the memory of an array of int.
If you make the last character '\0 you have a C string that you can print as a whole:print(A);`
A C-string can be manipulated with string functions, I did not try, but I guess that cannot be done with your array of int.