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

long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes

Answer Posted / jitender mahender

long int occupies 4 bytes in memory.

Is This Answer Correct ?    38 Yes 27 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the 4 data types?

964


What does %2f mean in c?

1161


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

1200


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

1034


Explain About fork()?

1058


What is a nested formula?

1054


Explain how can you restore a redirected standard stream?

1030


What is the right way to use errno?

1003


What is memory leak in c?

1062


Why is not a pointer null after calling free?

970


Explain how does free() know explain how much memory to release?

1013


What are the advantages of using new operator as compared to the function malloc ()?

1269


How do you determine a file’s attributes?

1016


How can a program be made to print the line number where an error occurs?

1036


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2262