[user02@FC4 Lesson04]$ cat -n 1001.c
1 #include <stdio.h>
2
3 int main(void)
4 {
5 printf("%d\n", 1001);
6
7 return 0;
8 }
[user02@FC4 Lesson04]$ gcc -o 1001 1001.c[user02@FC4 Lesson04]$ ./1001
1001
[user02@FC4 Lesson04]$ cat -n n1001.c
1 #include <stdio.h>
2
3 int main(void)
4 {
5 printf("%d\n", 2002);
6
7 return 0;
8 }
[user02@FC4 Lesson04]$ gcc -o n1001 n1001.c[user02@FC4 Lesson04]$ ./n1001
2002
lesson_4_1001.c, Rev. 1, Last changed on 2005-08-08 04:21, 321 page hits