We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi...
Is there any way to declare large size of array?
example:
char arr[200*1024];//200kb
Thanks
const char arr[200*1024]; //200kb
If it is a constant array, it can be put into internal flash with the keyword const.