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


Please Help Members By Posting Answers For Below Questions

the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

1793


What are the advantages and disadvantages of a heap?

697


How to Throw some light on the splay trees?

613


Write a program to swap two numbers without using a temporary variable?

599


Subtract Two Number Without Using Subtraction Operator

346






Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

569


In C language, a variable name cannot contain?

729


What are global variables and how do you declare them?

610


a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

712


Why is %d used in c?

559


What are header files in c?

606


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

3171


What is openmp in c?

602


Are the variables argc and argv are local to main?

778


Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?

972