declare variable C++ code example

Example 1: declare variable c++

#include <iostream>
using namespace std;

int main(){
   	int numero; //il tipo della variabile è int, il nome della variabile è 'numero'
}

Example 2: c++ declare variable

std::string str = "text";	// stores a string
int    foo = 3;				// stores any integer
float  bar = 3.14;			// stores 32 bit number
double baz = 3.14159265;	// stores 64 bit number

Example 3: variabvles in c++

#include <iostream>

using namespace std
  
int main{
	int x = 3;
    float g = 4.0;
    long h = 1234567;
    double j = 1237886.099;
    cout<<x<<endl;
    cout<<h<<endl;
    cout<<g<<endl;
    cout<<j<<endl;
}

Tags:

Cpp Example