Default.cpp
Upload User: dq031136
Upload Date: 2022-08-08
Package Size: 802k
Code Size: 0k
Development Platform:

C++ Builder

  1. #include <iostream.h>
  2. void show_values(int one = 1, int two = 2, int three = 3)
  3.  {
  4.    cout << one << ' ' << two << ' ' << three << 'n';
  5.  }
  6.                                                     
  7. void main(void)
  8.  {
  9.    show_values(1, 2, 3);   
  10.    show_values(100, 200);
  11.    show_values(1000);
  12.    show_values();
  13.  }