Write a c program to print the sizes and ranges of different
data types in c?
Answer Posted / pavithra
x=sizeof(int);
range=pow(2,x);
| Is This Answer Correct ? | 24 Yes | 15 No |
Post New Answer View All Answers
What is main () in c?
What are the benefits of c language?
When can you use a pointer with a function?
What are categories used for in c?
What is #define used for in c?
Why is c used in embedded systems?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What math functions are available for integers? For floating point?
What is a struct c#?
What is pointers in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What does sizeof function do?
what are non standard function in c
What is the use of parallelize in spark?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions