blob: 79b89a4d289860d3f32b61adbdb7e0c1df3556a2 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <stdio.h>
2
3int
4main (void)
5{
6 int i;
7 puts ("This should print \"wow = I\" for I from 0 to 39 inclusive.");
8 for (i = 0; i < 40; i++)
9 printf ("%s = %d\n", "wow", i);
10 return 0;
11}