long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / shruti
yes its compiler dependant..
these are figures with respect to only one compiler..
it may change for others.
but it genrally takes 6 bytes space..
float 4 bytes..
double 8 bytes..
| Is This Answer Correct ? | 17 Yes | 7 No |
Post New Answer View All Answers
What is cohesion and coupling in c?
what is a function method?give example?
How can a program be made to print the name of a source file where an error occurs?
What are the differences between new and malloc in C?
How do you define CONSTANT in C?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Write a program that accept anumber in words
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Explain a pre-processor and its advantages.
Are c and c++ the same?
Why & is used in scanf in c?
What is double pointer in c?
Why calloc is better than malloc?
Why do we write return 0 in c?
What does the c in ctime mean?