C++ Variable Calculate value in the output statement

Description

C++ Variable Calculate value in the output statement

#include <iostream>

using namespace std;

int main()//from  w  ww . j a v a2 s  .c o m
{
  int start;
  int time;
  start = 37;
  time = 22;
  cout << start + time  << endl;
  return 0;
}



PreviousNext

Related