// clrscr, cout<br>แสดงการพิมพ์ด้วยคำสั่ง cout หลายค่า
/* http://www.thaiall.com/tc */
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
cout <<
"abc"
<<
'd'
'\n'
;
'e'
'f'
"g"
'h'
'i'
"\n"
getch();
}