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