how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / prashant
It depend upon What kind of machine you have (16 or 32 bit)?
If you are using 16 bit machine then int requires 2 bytes of
memory and if you are using 32 bit machine then int requires
4 bytes of memory...
Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is c variable?
What is the function of multilevel pointer in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the basic structure of c?
What is the best way to store flag values in a program?
What is conio h in c?
What is infinite loop?
Calculate 1*2*3*____*n using recursive function??
Explain what is the difference between #include and #include 'file' ?
Explain enumerated types in c language?
Explain what are the different data types in c?
What is the g value paradox?
What tq means in chat?
Explain what happens if you free a pointer twice?
When should we use pointers in a c program?