C++ Variables and Identifiers - easy4tuts.blogspot.com

Hot Contents To Know

Post Top Ad

Your Ad Spot

C++ Variables and Identifiers

 


 


C++ Variables

Variables are containers for storing data values.

In C++, there are different types of variables (defined with different keywords), for example:

  • int - stores integers (whole numbers), without decimals, such as 123 or

-123

  • double - stores floating point numbers, with decimals, such as 19.99 or

-19.99

  • char - stores single characters, such as 'a' or 'B'. Char values are surrounded by single quotes
  • string - stores text, such as "Hello World". String values are surrounded by double quotes
  • bool - stores values with two states: true or false

variable data के value को store करने के लिए container हैं।

C++ में, विभिन्न प्रकार के variable (विभिन्न keyword द्वारा declare) हैं, उदाहरण के लिए:

• int - दशमलव के बिना पूर्णांक (पूर्ण संख्याएँ) संग्रहीत करता है, जैसे 123 या -123

doublefloat point संख्याओं को दशमलव के साथ store करता है, जैसे कि 19.99 या -19.99

char - single character को store करता है, जैसे 'a' या 'B'char value single quotes से घिरे हुए रह्ते हैं

string - text को store करता है, जैसे "Hello world"। string value double quotes sign से घिरे हुए  रह्ते हैं

bool - value को दो condition में store करता है: true या false


Declaring (Creating) Variables

To create a variable, specify the type and assign it a value:

एक variable बनाने के लिए, data type बताये और उसे एक value दे:

Syntax

Data_type variableName = value;

Where data_type is one of C++ types (such as int), and variableName is the name of the variable (such as x or myName). The equal sign is used to assign values to the variable.

जहां data_type C++ के data_type में से एक है (जैसे कि int), और variableName variable का नाम है (जैसे कि x या myName)equal sign  का उपयोग variable को value देने के लिए किया जाता है।

To create a variable that should store a number, look at the following example:

एक variable बनाने के लिए जिसमें एक संख्या store होनी चाहिए, निम्नलिखित उदाहरण देखें:

Example

Create a variable called myNum of type int and assign it the value 15:

int myNum = 15;
cout << myNum;

You can also declare a variable without assigning the value, and assign the value later:

आप value बताए बिना भी एक variable declare कर सकते हैं, और बाद में value assign कर सकते हैं:

Example

int myNum;
myNum = 
15;
cout << myNum;

Note that if you assign a new value to an existing variable, it will overwrite the previous value:

ध्यान दें कि यदि आप किसी मौजूदा variable को नया value assign करते हैं, तो यह पिछले value को overwrite कर देगा:

Example

int myNum = 15;  // myNum is 15
myNum = 10;  // Now myNum is 10
cout << myNum;  // Outputs 10


Other Types

A demonstration of other data types:

अन्य data types का प्रदर्शन:

Example

int myNum = 5;               // Integer (whole number without decimals)
double myFloatNum = 5.99;    // Floating point number (with decimals)
char myLetter = 'D';         // Character
string myText = "Hello";     // String (text)
bool myBoolean = true;       // Boolean (true or false)

You will learn more about the individual types in the Data Types chapter.


Display Variables

The cout object is used together with the << operator to display variables.

To combine both text and a variable, separate them with the << operator:

Variable display करने के लिए << operator के साथ cout object का उपयोग किया जाता है।

text और variable दोनों को combine करने के लिए, उन्हें << ऑपरेटर से अलग करें:

Example

int myAge = 35;
cout << 
"I am " << myAge << " years old.";


Add Variables Together

To add a variable to another variable, you can use the + operator:

एक variable को दूसरे variable में जोड़ने के लिए, आप + ऑपरेटर का उपयोग कर सकते हैं:

Example

int x = 5;
int y = 6;
int sum = x + y;
cout << sum;

C++ Declare Multiple Variables


Declare Many Variables

To declare more than one variable of the same type, use a comma-separated list:

एक ही प्रकार के एक से अधिक variable declare करने के लिए, comma-separated list का उपयोग करें:

Example

int x = 5, y = 6, z = 50;
cout << x + y + z;


One Value to Multiple Variables

You can also assign the same value to multiple variables in one line:

आप एक पंक्ति में एकाधिक variables को समान value भी assign कर सकते हैं:

Example

int x, y, z;
x = y = z = 
50;
cout << x + y + z;


C++ Identifiers

 


C++ Identifiers

All C++ variables must be identified with unique names.

These unique names are called identifiers.

Identifiers can be short names (like x and y) or more descriptive names (age, sum, totalVolume).

Note: It is recommended to use descriptive names in order to create understandable and maintainable code:

सभी C++ variables को unique नामों से पहचाना जाना चाहिए।

इन unique नामों को identifier कहा जाता है।

identifier छोटे नाम (जैसे x और y) या अधिक descriptive नाम (age, sum, totalVolume) हो सकते हैं।

Note: समझने योग्य और रखरखाव योग्य code बनाने के लिए descriptive नामों का उपयोग करने की recomendation की जाती है:

Example

// Good
int minutesPerHour = 60;

// OK, but not so easy to understand what m actually is
int m = 60;

The general rules for naming variables are:

  • Names can contain letters, digits and underscores
  • Names must begin with a letter or an underscore (_)
  • Names are case sensitive (myVar and myvar are different variables)
  • Names cannot contain whitespaces or special characters like !, #, %, etc.
  • Reserved words (like C++ keywords, such as int) cannot be used as names

variable के नामकरण के सामान्य नियम हैं:

नामों में letters, digits और underscores हो सकते हैं

नाम एक letters या underscore (_) से शुरू होना चाहिए

नाम case sensitive हैं (myVar और myvar अलग-अलग variable हैं)

 नामों में blank space या special character जैसे !, #, %, आदि नहीं हो सकते।

reserved word (जैसे C++ keyword, जैसे int) का उपयोग नाम के रूप में नहीं किया जा सकता है

C++ Constants

 

Constants

When you do not want others (or yourself) to change existing variable values, use the const keyword (this will declare the variable as "constant", which means unchangeable and read-only):

जब आप नहीं चाहते कि दूसरे (या आप स्वयं) मौजूदा variable value को बदलें, तो const keyword का उपयोग करें (यह वैरिएबल को "constant" declare करेगा, जिसका अर्थ है unchangeable और read-only):

Example

const int myNum = 15;  // myNum will always be 15
myNum = 10;  // error: assignment of read-only variable 'myNum'

You should always declare the variable as constant when you have values that are unlikely to change:

जब आपके पास ऐसे value हों जिनके बदलने की संभावना न हो तो आपको हमेशा variable को constant declare करना चाहिए:

Example

const int minutesPerHour = 60;
const float PI = 3.14;


C++ User Input

 


C++ User Input

You have already learned that cout is used to output (print) values. Now we will use cin to get user input.

cin is a predefined object that reads data from the keyboard with the extraction operator (>>).

In the following example, the user can input a number, which is stored in the variable x. Then we print the value of x:

आप पहले ही जान चुके हैं कि cout का उपयोग value को output (प्रिंट) करने के लिए किया जाता है। अब हम user से इनपुट प्राप्त करने के लिए cin का उपयोग करेंगे।

cin एक predefined object है जो extraction operator (>>) के साथ keyboard से data पढ़ता है।

निम्नलिखित उदाहरण में, user एक संख्या input कर सकता है, जो variable x में store है। फिर हम x का value प्रिंट करते हैं:

Example

int x; 
cout << 
"Type a number: "// Type a number and press enter
cin >> x; // Get user input from the keyboard
cout << "Your number is: " << x; // Display the input value

Good To Know

cout is pronounced "see-out". Used for output, and uses the insertion operator (<<)

cin is pronounced "see-in". Used for input, and uses the extraction operator (>>)


Creating a Simple Calculator

In this example, the user must input two numbers. Then we print the sum by calculating (adding) the two numbers:

इस उदाहरण में, user को दो नंबर input करने होंगे। फिर हम दो संख्याओं की calculate (जोड़कर) करके योग प्रिंट करते हैं:

Example

int x, y;
int sum;
cout << 
"Type a number: ";
cin >> x;
cout << 
"Type another number: ";
cin >> y;
sum = x + y;
cout << 
"Sum is: " << sum;

 

No comments:

Post a Comment

Post Top Ad

Your Ad Spot