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.
No Answer is Posted For this Question
Be the First to Post Answer
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
What is string in c language?
What are the features of the c language?
What is wrong with this declaration?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
What is a pointer?
What is Conio.h ?
Combinations of fibanocci prime series
What does the message "warning: macro replacement within a string literal" mean?
Diff between for loop and while loop?
What is sizeof int in c?
When can you use a pointer with a function?