sir, when i am doing 3d array initialization as following: unsigned char keypad[4][4][0] =('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'); then its not showing any error. but when i use following line: unsigned char keypad[4][4][0] ={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; then compiler showing the error that there is some error near "{" so can you please resolve my problem....?
No, the compiler does not say that!
You need to post the full text of the message exactly as displayed; copy-&-paste it - do not manually re-type it.
Also, pay attention to the instructions for posting source code: www.danlhenry.com/.../keil_code.png
Why have a zero-size dimension? Please elaborate what your idea about this was. What is the allowed index range for a zero-size dimension?
View all questions in Keil forum