#include <iostream> // for std::I/O
#include <cstring> // for std::strcpy
int main ( )
{
char Data[100] = "An important mail..."; // Initializing
char* Items[100] ;
Items[0] = newchar[100] ; // We have to allocate for each Item memory.
std::strcpy(*Items,Data) ; // Here we copy it
std::cout << Items[0] << std::endl ; // Just for 'DEBUG'
delete[] Items[0] ; // And free it -> Else Memory leak
}