May be i am getting a trouble with my question, I tried to know how can my code run like this...What is my trouble, please help me here is my code:
string arr[3][4];
arr[1][0] = "34234";
printf("%s",arr[1][0]);
But my output is %#$ ( something like this). Please help me, thanks you very much.
string?? user-defined??,printf("%s",arr[1])std::cout << arr[1][0] << std::endl;