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

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