What is the difference between text files and binary files?
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.
What are global variables and how do you declare them?
Is c functional or procedural?
64/square(4)
What is meant by inheritance?
Explain the difference between #include "..." And #include <...> In c?
code for quick sort?
what is calloc and malloc?
What is use of pointer?
How does pointer work in c?
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
Can we include one C program into another C program if yes how?