/*
* Tests for the parser state psym_for_exprs, which represents the state after
* reading the keyword 'for' and the 3 expressions, now waiting for the body
* of the loop.
*/
//indent input
void
for_loops(void)
{
int i;
for (i = 0; i < 10; i++)
printf("%d * %d = %d\n", i, 7, i * 7);
for (i = 0; i < 10; i++) {
printf("%d * %d = %d\n", i, 7, i * 7);
}