how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / 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 |
Post New Answer View All Answers
What are structure types in C?
Describe static function with its usage?
Explain what is the benefit of using #define to declare a constant?
Subtract Two Number Without Using Subtraction Operator
Explain why can’t constant values be used to define an array’s initial size?
Explain function?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What are the similarities between c and c++?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is main () in c?
How we can insert comments in a c program?
code for find determinent of amatrix
What is function prototype in c language?
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
program for reversing a selected line word by word when multiple lines are given without using strrev