Code Library
Home Submit Free Hosting Link To Us Contacts

CPP Declaring variables

CPP Declaring variables CPP CPP Declaring variables Download (.zip)



int x;
int a, b, c, d;
char letter;
float the_float;

#include <iostream.h>
int main()
{
  int thisisanumber;
  cout<<"Please enter a number:";
  cin>>thisisanumber;
  cout<<"You entered: "<<thisisanumber;
  return 0;
}




  • CPPDeclaring variables


Tatet