#include <iostream>
using namespace std;
#include <string.h>
void main()
{
system(
"cls"
);
int i,j,l;
char *x[5]={
"abcd"
,
"ef"
"ghi"
"jklmn"
"o"
};
for
(i=0;i<5;i++) {
l = strlen(x[i]);
cout << l <<
" : "
;
(j=0;j<l;j++) {
cout << x[i][j] <<
" - "
}
cout <<
"\n"
getchar();