how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / vishal
In this case,
Processor : now if we consider size of ALU (16 bit or 32
bit) then int size get differed.
OS: in case of OS size of int varies in windows & linux.
Compiler : In case of compiler, C compiler has size of int 2
bytes while on same OS & processor Java compiler has 4 bytes
Finally conclusion is as per operation capacity of ALU,
operating systems are designed.
while in case of compiler i think they work in somewhat
upper layers so it doesn't matter with internal operation.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / hrishikesh
I think it is decided by Os...
Because variables are assigned memory while the program is
in execution which is done by the OS,and the "MEMORY
MANAGEMENT" is one of the important services provided by the
OS which does the "memory allocation and De allocation".
So, what will be the amount of location needed to store an
int is OS dependent .
Thanks ....,,,,
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / mrutyunjay sawant
its depends upon word length of processor
Is This Answer Correct ? | 0 Yes | 2 No |
Answer / rani
I think its compiler specific bcoz a char holds 1byte in c
where as it holds 2 bytes in java.
Is This Answer Correct ? | 3 Yes | 8 No |
Answer / rahul
definitely os bcoz.c compiler occupies 2 bytes in windows
where as the same c compiler occupies 4 bytes in linux.
Is This Answer Correct ? | 3 Yes | 11 No |
Answer / 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 |
write a program to generate address labels using structures?
What are header files in c programming?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Can we add pointers together?
What are called c variables?
What is the difference between near, far and huge pointers?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is a floating point in c?
wt is d full form of c
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Write the control statements in C language
what are enumerations in C