#include int main() {//prints char text[64][128] = { {"fuckin balls"}, }; for (int i = 0; i < 128; i++) { printf("%c",text[0][i]); } getch(); }