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;
}
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;
}
what is a variable in cpp
Variable is simply a name or a label given to a memory location.
variables in c++
#include <iostream>
using namespace std;
int main() {
// To define variables in C++, you have to specify the data type. Example:
int number = 10; // Declares a variable with the integer data type.
float decimal = 3.5; // Declares a variable with the float data type.
double decimalNum = 3.3333; // Doubles are used for more specific points in floats.
string text = "Hello World"; // Declares a variable with the string data type.
bool result = true; // Declares a variable with the boolean data type.
}
C++ variables
Create a variable called myNum of type int and assign it the value 15:
int myNum = 15;
cout << myNum;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us