the maximum value that an integer constant can have is
a) -32767
b) 32767
c) 1.701e+38
d) -1.7014e+38
Answer Posted / sadia
B
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the difference between struct and typedef struct in c?
What does %p mean?
What are terms in math?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is main () in c language?
How are strings stored in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Does * p ++ increment p or what it points to?
What is hash table in c?
What does typedef struct mean?
What is the difference between char array and char pointer?
What is the use of pointers in C?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is new line escape sequence?
while initialization of array why we use a[][2] why not a[2][]...?