what is the size of an integer variable?
Answers were Sorted based on User's Feedback
Answer / anandi
The size of integer variable is 2 bytes.
Eg:
if u declare like,
int a;
the compiler will allocate the size of the variable a,
to 2 bytes bcoz it is an int variable.
If u want to know the size of any other
variables,structures,etc. use the sizeof() function.
Eg:
int a;
sizeof(a);
this will print 2 which is the size of the int datatype.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / piyush
It depends on the compiler we are working on.
if it is 32 bit compiler:(GCC)
integer is 4 bytes
for 18 bit compiler:(Turboc)
integer is 2 bytes
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / manish soni tagore collage jai
size of integer is
sizeof(int);
Is This Answer Correct ? | 0 Yes | 0 No |
how i m write c program 1.check prime number 2.prime number series
write a c program that prints all multiples of 3between 1 and 50.
write a programme that inputs a number by user and gives its multiplication table.
Which is the best website to learn c programming?
Explain what are header files and explain what are its uses in c programming?
How can you avoid including a header more than once?
Why is main function so important?
In which category does main function belong??
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
Define recursion in c.
difference between function & structure