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 |
What are preprocessor directives?
How many levels of pointers can you have?
write a program which will count occurance of a day between two dates.
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Explain what are compound statements?
When should I declare a function?
i need all types of question paper releted to "c" and other language.
What is break statement?
what different between c and c++
What is indirection in c?
Why do we write return 0 in c?
What is a null pointer in c?