I am making a map system here is a sample of my code in c++:
char map2[11][30] = {
"#############################",
"#@ #e < #",
"# # # #",
"# ############^#############",
"# ############ #############",
"# # # #",
"# # # #",
"# * * #",
"# # # #",
"# # # #",
"#############################",
};
but it does not show the 2nd "#############################"
.
I print by:
cout << map2[] << endl;