// cout, for<br>การใช้ cout คู่กับ for แบบคำสั่งเดียว
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
for
( int count = 1; count <=10; count++)
cout << count <<
"\n"
;
getch();
}