// for, for<br>แสดงการทำงานของ for ซ้อน for
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <conio.h>
void main()
{
int i,j;
for
(i=1;i <= 5; i++)
(j=1;j <=i; j++)
printf(
"*"
);
}
"\n"
getch();