how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / mathankumar
compiler
| Is This Answer Correct ? | 42 Yes | 17 No |
Post New Answer View All Answers
can we have joblib in a proc ?
Is c is a high level language?
How reliable are floating-point comparisons?
What is static and volatile in c?
What is anagram in c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What are the advantages of using Unions?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is the heap?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
How was c created?
What is the use of gets and puts?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]