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...

why ordinary variable store the later value not the initial

Answer Posted / sandeep

When Ordinary variable's value changed after initialisation
it's memory will filled with the new value

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Give basis knowledge of web designing ...

2058


Explain how do you determine a file’s attributes?

1090


What is the difference between union and structure in c?

1274


Differentiate between null and void pointers.

1225


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

1055


Is stack a keyword in c?

1145


What is the sizeof () operator?

1129


What is assignment operator?

1108


Write a program to generate the Fibinocci Series

1296


What is clrscr in c?

1170


What is c++ used for today?

1152


Is c language still used?

1043


What are the restrictions of a modulus operator?

1163


What is your stream meaning?

1330


#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.

6387