C++ Variable Create a variable and assign value to it

Description

C++ Variable Create a variable and assign value to it

#include <iostream> 

using namespace std; 

int main() /*  www  . j  a va 2s .c  o  m*/
{ 
  int mynumber; 

  mynumber = 10; 

  cout << mynumber << endl; 
  return 0; 
}



PreviousNext

Related