hgbook
view it/examples/tour.cat2.it @ 812:42e2c9d47ef4
Minor changes and translation of code snippets for Ch.12.
author | Giulio@puck |
---|---|
date | Sat Aug 15 15:15:39 2009 +0200 (2009-08-15) |
parents | |
children | 11a6ba60bb9e |
line source
1 <!-- BEGIN tour.cat2 -->
2 <screen># ... modifichiamo il file ...
3 <prompt>$</prompt> <userinput>cat hello.c</userinput>
4 /*
5 * Rilasciato nel pubblico dominio da Bryan O'Sullivan. Questo
6 * programma non รจ protetto da brevetti negli Stati Uniti o in
7 * altri paesi.
8 */
10 #include <stdio.h>
12 int main(int argc, char **argv)
13 {
14 printf("ciao, mondo!\");
15 printf("ancora ciao!\n");
16 return 0;
17 }
18 </screen>
19 <!-- END tour.cat2 -->