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 / arthy

39. fflush() is a function used to refresh the buffer in
case of files..
once fflush() function is executed all the contents in the
buffer are put into the specific files and the buffer is
emptied..

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does %c mean in c?

843


Which header file should you include if you are to develop a function which can accept variable number of arguments?

1040


What is sizeof int in c?

814


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

2096


Is it possible to initialize a variable at the time it was declared?

981


Do pointers take up memory?

845


Should I learn data structures in c or python?

750


Can you tell me how to check whether a linked list is circular?

1057


Why main is used in c?

812


What is oops c?

840


How to compare array with pointer in c?

829


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1444


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

891


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

831


How can I trap or ignore keyboard interrupts like control-c?

810