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 the size of an integer is decided?
- is it based on processor or compiler or OS?

Answer Posted / rajan

it's OS, I'm sure bcoz I read this answer in Programming
Interview Exposed Book.

Is This Answer Correct ?    1 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are structure types in C?

1105


Describe static function with its usage?

1215


Explain what is the benefit of using #define to declare a constant?

1195


Subtract Two Number Without Using Subtraction Operator

855


Explain why can’t constant values be used to define an array’s initial size?

1359


Explain function?

1095


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

1250


What are the similarities between c and c++?

1079


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1060


What is main () in c?

1078


How we can insert comments in a c program?

1130


code for find determinent of amatrix

1972


What is function prototype in c language?

1036


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

1045


program for reversing a selected line word by word when multiple lines are given without using strrev

2483