What is the difference between text files and binary files?


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

Post New Answer

More C Interview Questions

 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

0 Answers  


What are global variables and how do you declare them?

0 Answers  


Is c functional or procedural?

1 Answers  


64/square(4)

1 Answers  


What is meant by inheritance?

0 Answers  






Explain the difference between #include "..." And #include <...> In c?

0 Answers  


code for quick sort?

0 Answers  


what is calloc and malloc?

2 Answers  


What is use of pointer?

0 Answers  


How does pointer work in c?

0 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


Can we include one C program into another C program if yes how?

7 Answers   Infosys,


Categories