Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / hehe

Make the static variable as public

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

1069


What is wrong with this statement? Myname = 'robin';

1325


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

1311


Explain what is the difference between the expression '++a' and 'a++'?

1214


Explain what does the format %10.2 mean when included in a printf statement?

1360


What is c standard library?

1203


Why functions are used in c?

1133


What are the types of i/o functions?

1336


What is the difference between text and binary modes?

1189


Why is it important to memset a variable, immediately after allocating memory to it ?

2070


What is register variable in c language?

1029


Why do we use namespace feature?

1054


How do you write a program which produces its own source code as output?

1118


How can you convert integers to binary or hexadecimal?

1028


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6296