source: soft/tp14/soft/main.c @ 40

Last change on this file since 40 was 14, checked in by alain, 14 years ago
File size: 242 bytes
Line 
1
2#include "stdio.h"
3
4int main()
5{
6        int i;
7
8        TO BE COMPLETED
9
10        for( i=0 ; i<1000 ; i++)
11        {
12                if( tty_printf(" hello world : %d\n",i) )
13                {
14                        tty_puts("echec tty_printf\n");
15                        exit();
16                }
17        }
18
19        exit();
20
21        return 0;
22} // end main
23
Note: See TracBrowser for help on using the repository browser.