home *** CD-ROM | disk | FTP | other *** search
- /*********************************************************************
- * CH12_01.C Typedef *
- *********************************************************************/
-
- #include<stdio.h>
-
- typedef int torchon;
- typedef int serviette;
-
- main( void)
- {
- torchon j= 10, k;
- serviette l= 20;
-
- k= j+ l;
- printf(" k: %d", k);
-
- }
-
- /*
-
- k= 30 */
-
-