(root)/
glibc-2.38/
stdio-common/
bug2.c
       1  #include <stdio.h>
       2  
       3  int
       4  main (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  }