C++ Variable Copy a Value from One Variable to Another

Description

C++ Variable Copy a Value from One Variable to Another

#include <iostream>

using namespace std;

int main()/* w  ww. jav  a2s.co  m*/
{
  int start = 50;
  int finish;

  finish = start;

  cout << finish << endl;
  return 0;
}



PreviousNext

Related