34.what are bitwise shift operators?
35.what are bit fields? What is the use of bit fields in a
structure declaration?
36.what is the size of an integer variable?
37.what are the files which are automatically opened when a
c file is executed?
38.what is the little endian and big endian?
39.what is the use of fflush() function?
40.what is the difference between exit() and _exit() functions?
41.where does malloc() function get the memory?
42.what is the difference between malloc() and calloc()
function?
43.what is the difference between postfix and prefix unary
increment operators?
Answer Posted / snvs.narayana
43.prefix operator increase and then use value.
post fix operator use the value and then increase.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Is it possible to have a function as a parameter in another function?
How do you search data in a data file using random access method?
How would you rename a function in C?
difference between object file and executable file
what are non standard function in c
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is break statement?
What are the 4 types of programming language?
How can I insert or delete a line (or record) in the middle of a file?
How can a program be made to print the line number where an error occurs?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is signed and unsigned?
Why is c not oop?
What is a void pointer in c?
What is a spanning Tree?