1 #include <stdio.h>
2
3 main(int argc, char *argv[])
4 {
5 int i = 0;
6 for(i; i < argc-1; i++)
7 {
8 printf("NO %d %s
",i+1, argv[i+1]);
9 }
10 }