What is the difference between text and binary i/o?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is sizeof int in c?

0 Answers  


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


What are the salient features of c languages?

0 Answers  


main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 Answers   BTBP, CitiGroup,


How can you increase the size of a dynamically allocated array?

0 Answers   TISL,






write a program to display the array elements in reverse order in c language

16 Answers  


what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }

9 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


What are the types of i/o functions?

0 Answers  


Why main function is special give two reasons?

0 Answers  


What does the c in ctime mean?

0 Answers  


What are the different types of linkage exist in c?

0 Answers  


Categories