हेलो Students...(अगर आप Program को रन कैसे करते है तो इस Link पर click करे )
learn c++ programming in 21 days for beginners,learn c++ codecademy,,c++ tutorial for beginners,c++ programming examples,learn c++ the hard way,learn c++ reddi,tbest way to learn c++,c++ online course free.
आज मैं आपको कुछ C++ के variables के बारे में बताने जा रहा हूँ सबसे पहले हमारे दिमाग में ये सवाल आता है कि वेरिएबल्स क्या होते और इनका programming क्या use होता है |
learn c++ programming in 21 days for beginners,learn c++ codecademy,,c++ tutorial for beginners,c++ programming examples,learn c++ the hard way,learn c++ reddi,tbest way to learn c++,c++ online course free.
आज मैं आपको कुछ C++ के variables के बारे में बताने जा रहा हूँ सबसे पहले हमारे दिमाग में ये सवाल आता है कि वेरिएबल्स क्या होते और इनका programming क्या use होता है |
C++ Variable
A variable is a name of memory location(ये एक मेमोरी लोकेशन है ). It is used to store data(ये डाटा को स्टोर करने के लिये इस्तेमाल होता है ). Its value can be changed and it can be reused many times.(ये वेरिएबल्स को एक बार store करने पर आप इसे बार बार use कर सकते है )
It is a way to represent memory location through symbol so that it can be easily identified.
Let's see the syntax to declare a variable:
type variable_list;(टाइप वेरिएबल लिस्ट )
ये एक सिंटेक्स है की हम वेरिएबल्स को कैसे लिख सकते है जैसे आप देखे। ....
- int x; (यहाँ पर int एक डाटा टाइप है और x एक वेरिएबल है )
- float y; (यहाँ पर float एक डाटा टाइप है और y एक वेरिएबल है )
- char z; (यहाँ पर char एक डाटा टाइप है और z एक वेरिएबल है )
We can also provide values while declaring the variables as given below:
- int x=5,b=10; //declaring 2 variable of integer type
- float f=30.8;
- char c='A';
Rules for defining variables
A variable can have alphabets, digits and underscore.
A variable name can start with alphabet and underscore only. It can't start with digit.
No white space is allowed within variable name.
A variable name must not be any reserved word or keyword e.g. char, float etc.
Valid variable names:
Invalid variable names:
Comments
Post a Comment