Using arrays to store data.

Can anyone help me start writing a program to store some information and then have it recalled. I would like to be able to store a list of the video games I own because i thought it would be fun :) any help is appreciated.
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using namespace std;

int main ()
{
    cout<<"I can help you start writing a program to store some information"<<endl;
    cout<<"and then have it recalled."<<endl;
    cout<<"http://www.cplusplus.com/doc/tutorial/arrays/"<<endl;
    cout<<"Have fun!"<<endl;
    return 0;
}
Topic archived. No new replies allowed.