home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / test / stdio.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-05  |  193 b   |  12 lines

  1. #include <iostream.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6.   cout << "Hello ";
  7.   printf("nice ");
  8.   cout << "world!";
  9.   printf(" -- from stdio\n");
  10.   cout << " -- from streams\n";
  11. }
  12.