Hi,

My program must read 10 integers(whole numbers) and store them as a single string.

Iv'e gotten this far, can anyone give me some help what I should do to complete it.

Code:
//---------------------------------------------------------------------------
#include<conio>
#include<iostream>
#include<cstring>
#pragma hdrstop
#include <stdlib.h>
#include <stdio.h>
using namespace std;

//---------------------------------------------------------------------------

#pragma argsused
int main(int argc, char* argv[])

{
   char string[20] = "";
   char stringNumber[4];
   int number;

   for ( int i = 0; i < 10; i++ )
   {


   }
   cout << string ;

   getch();
   return 0;
}