home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX02008.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  236 b   |  13 lines

  1. // ex02008.cpp
  2. // Linkage-specifications
  3. #include <iostream.h>
  4.  
  5. extern "C"    {            // the linkage-specification
  6. #include <stdlib.h>    // tells C++ that stdlib functions
  7. }                        // were compiled with C
  8.  
  9. main()
  10. {
  11.     cout << rand();
  12. }
  13.