home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / inline1.cpp < prev    next >
C/C++ Source or Header  |  1993-03-17  |  472b  |  26 lines

  1. // C++ program illustrates inline functions
  2.  
  3. #include <iostream.h>
  4.       
  5. inline double sqr(double x)
  6. {
  7.   return x * x;
  8. }                          
  9.  
  10. inline double cube(double x)
  11. {
  12.   return x * x * x;
  13. }      
  14.       
  15. main()
  16. {                               
  17.   double x;
  18.   
  19.   cout << "Enter a number: ";
  20.   cin >> x;
  21.   
  22.   cout << "square of "  << x << " = " << sqr(x) << "\n"
  23.        << "cube of " << x << " = " << cube(x) << "\n";
  24.        
  25.   return 0;
  26. }