home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / prg / alb_c10 / chap_04 / ch04_01.c next >
Encoding:
C/C++ Source or Header  |  1994-09-26  |  546 b   |  20 lines

  1. /*********************************************************************
  2. *  CH04_01.C           Les macro-instructions putchar() et getchar()   *
  3. *********************************************************************/
  4.  
  5. #include<stdio.h>     
  6.  
  7. main( void)
  8. {
  9.     char car;
  10.  
  11.     car= getchar();     /* Entrez un caractΘre: x               */
  12.     putchar( car);      /* Il est affichΘ.                      */
  13.  
  14.         putchar('Z');       /* affiche Z α la suite.                */
  15. }
  16.  
  17. /*
  18.  
  19. x       caractΦre entrΘ
  20. xZ    caractΦres affichΘs                        */