can any one tell that i have a variable which is declared
as static but i want this variable to be visible to the
other files? how?

Answer Posted / vadivelt

It is not possible to directly access the static variable
of one file from another file. But we can access is it
in different way(by accessing the location).

Lets have a file1.c with following code:

static int a;
int *ptr = &a;/*ptr in Global scope, so by default its
storage class is extern*/

void func(void)
{
a = 30;
}

Here 'a' is static variable and it cannot be directly
accessed from another file. So create a pointer of same
data type (*ptr) and assign the address of the variable to
the pointer. Now whenever the variable value is changed in
file1.c, it will be updated in the location of 'a' and
pointer holds that location.

Now Lets have a second file with name main.c with the foll
code

#include<stdio.h>
#include<conio.h>

main()
{
extern int *ptr;
printf("%d\n", *ptr);
func();
printf("%d", *ptr);
getch();
}

Since *ptr is a extern variable and it holds the address of
a, whenever the value of the variable is changed in
file1.c, it will reflect in main.c also.

Here, when 1st printf() is executed, 'a' value would be 0.
Cos it is a static and defualt initial value is 0.

before 2nd printf() is encountered, 'a' value is changed to
30 in file1.c using func();

since we are accessing address of the variable using ptr
,the same value will reflect in main.c also.

In the same way if u want to change the value of static
variable in main.c

Just use *ptr = somevalue; it will reflect in variable 'a' in
file1.c

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between typedef struct and struct?

820


Why void main is used in c?

773


the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above

790


How can my program discover the complete pathname to the executable from which it was invoked?

840


What is a floating point in c?

792


Why malloc is faster than calloc?

791


Explain the properties of union. What is the size of a union variable

912


How can I automatically locate a programs configuration files in the same directory as the executable?

838


what is the structure pointer?

1832


how to write optimum code to divide a 50 digit number with a 25 digit number??

2965


What are static variables in c?

794


What are the rules for identifiers in c?

789


What is c language and why we use it?

794


how to write a c program to print list of fruits in alpabetical order?

2057


What is the purpose of type declarations?

864