ubuntu-buildroot/output/build/glibc-2.36-81-g4f4d7a13edfd.../stdio-common/bug2.c

12 lines
196 B
C
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
#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;
}