Monday, December 10, 2007

How to store information into array

How to store information into array

To store information into array

#include

int main()

{ int array[5] , e;

for ( e=0; e<5;>

{ cout << "please key in the value for array numbers [" <<>

cin >> array[e];}

for (e = 0; e<5;>

cout <<" Array number "<

return 0;

}

Result :

No comments: