cpp _variable code example
Example 1: C++ variables
Create a variable called myNum of type int and assign it the value 15:
int myNum = 15;
cout << myNum;
Example 2: C++ Variable
#include <iostream>
using namespace std;
int main(){
int number = 1;
double decimal = 6.9;
char characterx = 'i';
string text ="Sup";
bool boolean = true;
return 0;
}