[Solved] Access violation reading location 0xCCCCCCCC [closed]
[ad_1] Presuming you have twelve months in your input file, you’re reading past the end of your arrays. Replace: for(int i=0;i<=count;i++) { with: for( int i=0; i < count; ++i ) { 0 [ad_2] solved Access violation reading location 0xCCCCCCCC [closed]