devxlogo

Declaring Variables in C++

Declaring Variables in C++

Say you want to store data for temporary use in a program. You will have to declare variables to input the data. Luckily, declaring variables in C++ is very easy. This simple program gets the user’s age as input and displays it back to the screen. Here is the source code:

#include using namespace std;int main(){   int age;   cout << "My Second C++ Program" <&lt' endl;   cout << "Please enter your age in years followed by : ";   cin >> age;   cout << "
You are " << age << " years old." << endl;   return 0;}

To declare the variable "age," simply type the data type (int) in front of it. Notice that you can specify the type of data you want the function main to return.This next program uses a few more variables. It retrieves the user's age, as well as their height, weight, hair color, and eye color.

#include #include using namespace std;int main(){   int age, feet, inches, pounds;   string hair, eye;   cout << "My third c++ program.

";   cout << "Please type your answer to each question"        << "followed by ." << endl;   cout << "What is your age (years)? ";   cin >> age;   cout << "
How tall are you (ft in)? ";   cin >> feet >> inches;   cout << "
How much do you weigh (lbs)? ";   cin >> pounds;   cout << "
What color is your hair? ";   cin >> hair;   cout << "
What color are your eyes? ";   cin >> eye;   cout << endl << "
You are " << age << " years old, "        << feet << " feet " << inches << " inches tall."         << "
Youweigh " << pounds << " pounds,        << " have " << hair << " colored hair and "        << eye << " colored eyes." << endl;   return 0;}

Notice that it's possible to declare different variables of the same type in one line. Simply separate them by a comma. The previous code also includes a file called string and uses strings to store characters.

A note about data-handling and error detection: when you have an integer as a variable, there is nothing you can do to prevent a user from trying to enter invalid data.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist