mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-04 22:08:21 +00:00
13 lines
179 B
C
13 lines
179 B
C
/* Generate file for tail test */
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
int i;
|
|
|
|
for (i=1; i<=500; i++)
|
|
printf("This is line number%5d\n",i);
|
|
}
|