how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / hi
os
| Is This Answer Correct ? | 9 Yes | 14 No |
Post New Answer View All Answers
What is equivalent to ++i+++j?
The difference between printf and fprintf is ?
What are loops in c?
How do you view the path?
What is the use of gets and puts?
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
Can i use “int” data type to store the value 32768? Why?
Write a code to generate divisors of an integer?
What are global variables and explain how do you declare them?
Do pointers need to be initialized?
How can I make it pause before closing the program output window?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is the acronym for ansi?
What is n in c?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above