Skip to main content

Concept of Local, Global and Static Variables in C programming

   Local Variables (automatic or internal variable):
The automatic variables are always declared within a function or block and are local to the particular function or block in which they are declared. As local variables are defined within the body of the function or the block, other functions can not access these variables. The compiler shows errors in case other functions try to access the variables.
          Default Initial value of such type of variable is an unpredictable value which is often called garbage value. The scope of it is local to the block in which the variable is defined. Again, its life is till the control remains within the block in which the variable is defined. The keyword auto may be used while declaration of variable. For example, auto int a; But this is normally not done.

        /*An example to illustrate local variable*/
     #include<stdio.h>
          long int fact(int n)
               {
                     int i;
                     long int f=1;
                     for(i=1;i<=n;i++)
                             f*=1;
                    return(f); 
                     }

void main()
             {
                int num=5;
                printf(“The factorial of 5 is%ld”,fact(num));
                 }
Here, the variables n, i , and f are local to function fact() and are unknown to main() function.

Global Variables (External):
               The external or global variables are those variables declared outside any block or function. The default initial value for these variables is zero. The scope is global i.e. within the program. The life time is as long as the program’s execution doesn’t come to an end. The keyword extern can be used to identify the global variable. But, since the variables declared outside any block are global by default, there is no need of using extern.
  An example to illustrate the global variables,
           #include<stdio.h>
          #include<conio.h>
          int a=10;
         void fun()
                  {
            a=20;
            printf(“\t%d”,a++);
           }
 void main()
         {
           printf(“\t%d”,a);
           fun();
           printf(“\t%d”,a);
        }
Output:
         10     20        21


Static Variables:
          The static variables are defined using keyword static.  The default initial value for this type of variable is zero if user doesn’t initialize its value. Its scope is local to the block in which the variable is defined. Again, the life time is global i.e. its value persists between different function calls.      
 Examples:

   With auto variables                             With static variables
  increment()                                            increment()
          {                                                                {
            int i=1;                                                           static int i=1; /* here  i is static variable*/
           printf(“%d\n”,i);                                              printf(“%d\n”,i);
           i++;                                                                  i++;
           }                                                                  }

void main()                                                        void main()
            {                                                                      {
            increment();                                                        increment();
            increment();                                                        increment();
            increment();                                                         increment();
            increment();                                                         increment();
            }                                                                           }
Output :
1                                        1
1                                        2
1                                        3
1                                        4
  The static variable doesn’t disappear when the function is no longer active. Their values persist. if control comes back to the same function again, the static variables have the same values they    had last time around.

Comments

Popular posts from this blog

Database Management System(DBMS)

Data and Information  Data is an unprocessed raw fact which does  not give complete meaning about any object,person, entity etc. But when various inter-related data arranged in a row, it gives a complete meaning which is referred to as information. For Example: ID Name Address Program 1101 Ram Shrestha Biratnagar BScIT         is information of a specific person. Database Database is a repository(storage) for the organized collection of related information  of data items. It Consist of meaningful arrangement of data, relationship, constraints, schema etc. In modern days we define database as a computerized record-keeping system used to store information and allows users to retrieve and update these information on their request. Some example of databases are telephone directory, data of SLC result, student and employee records etc. Database Management System(DBMS) Database is the softw...

What is Java Applets?

An applet is a special kind of Java program that is designed to be transmitted over the Internet and automatically executed by a Java-compatible web browser. Furthermore, an applet is downloaded on demand, without further interaction with the user. If the user clicks a link that contains an applet, the applet will be automatically downloaded and run in the browser. Applets are intended to be small programs. They are typically used to display data provided by the server, handle user input, or provide simple functions, such as a loan calculator, that execute locally, rather than on the server. In essence, the applet allows some functionality to be moved from the server to the client.

What is manipulator in C++?

Answer: Manipulators are special functions that can be included in the I/O statement to alter the format parameters of a stream. Table-2 shows some important manipulator functions that are frequently used. To access these manipulators, the file < iomanip.h > should be included in program.                               Table-2               Manipulators                                                    Equivalent ios function               set...