summaryrefslogtreecommitdiff
path: root/stdio-common/bug2.c
blob: 79b89a4d289860d3f32b61adbdb7e0c1df3556a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int
main (void)
{
  int i;
  puts ("This should print \"wow = I\" for I from 0 to 39 inclusive.");
  for (i = 0; i < 40; i++)
    printf ("%s = %d\n", "wow", i);
  return 0;
}