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

How to access or modify the const variable in c ?

Answer Posted / guest

use pointers and u can do anything...

Is This Answer Correct ?    23 Yes 17 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why we use int main and void main?

1119


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

2308


Why is c used in embedded systems?

1176


Where define directive used?

1146


What type is sizeof?

1086


Explain modulus operator.

1090


How do I swap bytes?

1121


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

6395


Is there any data type in c with variable size?

1150


why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above

1192


write a program to print largest number of each row of a 2D array

2372


What is #include stdio h and #include conio h?

1183


In c language can we compile a program without main() function?

1179


Can a variable be both constant and volatile?

1185


What are 'near' and 'far' pointers?

1093