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

  1. // ex01010.cpp
  2. // A program without function prototypes
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     display("Hello, world");
  8. }
  9.  
  10. display(char *s)
  11. {
  12.     cout << s;
  13. }
  14.