mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-20 06:30:12 +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);
|
||
|
}
|