7. Identify the correct argument for the function call
fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above

Answer Posted / saurabh pandey

d

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Difference between linking and loading?

689


Where local variables are stored in c?

554


Why are all header files not declared in every c program?

600


Explain enumerated types.

597


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

641






What are disadvantages of C language.

642


What is the value of uninitialized variable in c?

568


What is the right type to use for boolean values in c? Is there a standard type?

559


What is pragma c?

607


How macro execution is faster than function ?

662


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

2116


How can you convert integers to binary or hexadecimal?

612


Can you pass an entire structure to functions?

692


Is c procedural or object oriented?

575


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1855