I am working on a simple program, and i am using Visual C++ Express Edition.
Everything is fine, i am processing the integers and i am copying them into an integer array. But the problem is when i m trying to access that integer array for further processing or to display them. It shows me weird numbers on the screen.
I have looked on to almost everywhere about it.
I did try initializing the array by
int bin_array[80]={};
In that case, all the values are wiped off the array and its simply 0 in every location.
Anyone can help me out here.