// array char, pointer of string<br>ตัวชี้อาเรย์ ทำงานคล้าย string
/* http://www.thaiall.com/tc */
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
int i,j;
char *x[5]={
"abc"
,
"def"
"ghi"
"jkl"
"mno"
};
for
(i=0;i<5;i++) {
cout << x[i] <<
"\n"
;
}
getch();