#include #include int main() { char name[20]; int numbers[10]; numbers[0] = 5; // place the number 5 at location 0 in my array numbers[3]=99; for (int i=0; i < 10; i++) { cout << "Pick a number: "; cin >> numbers[i]; } for (int c=0; c < 10; c++) cout << numbers[c] << " "; int j=0; while (j < 0) { cout << numbers[j] << " "; j++; } j=0; do { cout << numbers[j] << " "; j++; }while (j < 0); char quit[5]="no"; while(strcmp(quit,"no") == 0) { // my entire program could go here cout << "Do you want to quit?"; cin >> quit; } char address[50]; cout << "What is your address? "; cin.getline(address, 50); return 0; }