lesson 4 show1001 c
[[lesson_4_show1001_c]] last edit on
Aug 8, 2005
4:23 AM
by rescued_by_c
[user02@FC4 Lesson04]$ cat -n show1001.c
[user02@FC4 Lesson04]$ ./show1001
My favorite number is 1001
1 #include <stdio.h>
2
3 int main(void)
4 {
5 printf("My favorite number is %d\n", 1001);
6
7 return 0;
8 }
[user02@FC4 Lesson04]$ gcc -o show1001 show1001.c[user02@FC4 Lesson04]$ ./show1001
My favorite number is 1001