File: genfile.c

package info (click to toggle)
libee 0.4.1-2.1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,708 kB
  • sloc: sh: 10,219; ansic: 3,362; makefile: 84
file content (11 lines) | stat: -rw-r--r-- 154 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
	int i = 0;
	while(i < atoi(argv[1])) {
		printf("%d\n", i++);
	}
	return 1;
}