Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • variable in c++

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 557
    Comment on it

    In c++ we use variables to store the value of a number. The type of the value is needed to be declared first because according to that it will allocate the memory to particular variable.
    Every variable is assigned with the unique memory address.
    There are two types of variables:-

    • Local variable
    • Global variable


    LOCAL VARIABLES:-Declaration of local variable is inside the function or we can say that local variables are used only between the curly braces.
    e.g of local variable:

    1. #include
    2. using namespace local;
    3.  
    4. int main ()
    5. {
    6. // Declaration of local variable:
    7. int x, y;
    8. int z;
    9.  
    10. // actual initialization
    11. x = 5;
    12. y = 10;
    13. z = x * y;
    14.  
    15. cout << z;
    16.  
    17. return 0;
    18. }
    19.  

    GLOBAL VARIABLES:-Global variables are declared on the top of the program or we can say outside the function. We can use that variable throughout the program.
    e.g of global variable:

    1. #include
    2. using namespace global;
    3.  
    4. // Declaration of global variable :
    5. int m;
    6.  
    7. int main ()
    8. {
    9. // Declaration of local variable:
    10. int x, y;
    11.  
    12. // actual initialization
    13. x = 5;
    14. y = 10;
    15. m = x * y;
    16.  
    17. cout << m;
    18.  
    19. return 0;
    20. }
    21.  

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: