home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT154.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-11  |  402 b   |  15 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat154.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <math.h>
  6.  
  7. void main()
  8. {
  9.    char buffer[80];
  10.    char *string = "º┌½▄º╓╝╓  !!!";
  11.  
  12.    sprintf(buffer, "⌐pº╓╝╓╢▄ ? %s\n", string);
  13.    puts(buffer);
  14. }
  15.