13 lines
223 B
C
13 lines
223 B
C
#include <ansidecl.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
DEFUN_VOID(main)
|
|
{
|
|
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;
|
|
}
|