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