Hi, lets say I have an array of numbers
then I want to display a certain array element.
the value inside it,that is.
in pseudo code that would be..
int array[5][5];
for(x=0;x<6;x++)
{
if x= array[0][1];
}
;
;
;
message output " the value is array[0][1]"
I want to implement this in Visual C++.
using MessageBox command wont work unless i enclosed them in "" "" but that would not output the element in the array...Pls help.
Thanks