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, first of all, thanks a lot to Dan Henry and Drew Davis for their answers about generic pointers.
And now my problem is: compiling this dummy code I get the following error:
void tst_mem_large() large { { char data buf [128] = ""; } { char data buf [128] = ""; } } ...error C249: 'DATA': SEGMENT TOO LARGE
But why is there NO ERRORS in this sample?
void tst_mem_small() small { { char data buf [128] = ""; } { char data buf [128] = ""; } } ... 0 Error(s), 0 Warning(s).
Thank you.