long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / rohit
yes, i too agree it is compiler dependent. But, can anyone
explain, why it is compiler dependent?
If it is a 16 bit compiler, then the size of int is 2
bytes. If it is a 32 bit compiler, then the size of int is
4 bytes. Is there is any reason behind this? It will be
helpful if anyone clarifies this?
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
If errno contains a nonzero number, is there an error?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is oops c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Explain what is the difference between a string and an array?
Explain what is the difference between the expression '++a' and 'a++'?
What are the restrictions of a modulus operator?
What is getch() function?
Can you write the algorithm for Queue?
How many parameters should a function have?
What is #error and use of it?
Which is the best website to learn c programming?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is binary tree in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0