जय हिंद दोस्तो , स्वागत है आपका हमारी website gyanibasti मे , इस पोस्ट मे हम बात करेगे की variable क्या होते है | variable को कितने तरीके से define कर सकते है | हमे उम्मीद है , आपके variable in c++ से related questions के answer इस पोस्ट से मिल जाएगे |
Variable in C++
variable एक memory location का name होता है | जब data-type मे कोई value को assign करनी होती है | तो उसे variable की help से करते है | variable को define करने के किए programmer variable के नामे को कोई भी identifier ले सकते है | c++ मे variable को तीन प्रकार से define कर सकते है |
♦ local variable
♦ instance variable
♦ global variable
[1] – Local variable in c++
local variable एसे variable होते है | local use के लिए create करते है | इन्हे function मे define किया जाता है | और इन्हे केवल उसी function के अंदर ही access किया जा सकता है |
#include<iostream.h> #include<conio.h> void main() { int a,b,c; clrscr(); cout<<“enter any two number”; cin>>a>>b; c=a+b; cout<<c; getch(); } |
[2] – Instance variable in c++
instance variable एसे variable होते है | जिन्हे किसी class मे define किया जाता है | और उन्हे केवल उसी class मे access कर सकते है | जिस class मे इन्हे define किया गया है |
#include<iostream.h> #include<conio.h> class test { public: void show() { int a,b,c; cout<<“enter any two number”; cin>>a>>b; c=a+b; cout<<c; } }; void main() { clrscr(); test ob; ob.show(); getch(); } |
[3] – Global variable in c++
ये ऐसे variable होते है जिन्हें Header File के तुरंत बाद Define किया जाता है | और इन्हें सिर्फ अक बार Define करना होता है | अक बार define करने के बाद यूजर इस variable को अपने प्रोग्राम में Multiple Time यूज़ कर सकता है |
#include<iostream.h> #include<conio.h> int a,b,c; void main() { clrscr(); cout<<“enter any two number”; cin>>a>>b; c=a+b; cout<<c; getch(); } |
1 thought on “Variable in C++ ( C++ Variable in Hindi )”