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

Post New Answer

More C Interview Questions

struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));

2 Answers  


What is calloc() function?

0 Answers  


Program to find larger of the two numbers without using if-else,while,for,switch

11 Answers   iNautix, Wipro,


When was c language developed?

0 Answers  


Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

5 Answers   Accenture,






Explain what is a stream?

0 Answers  


What is c token?

0 Answers  


Explain what is the difference between #include and #include 'file' ?

0 Answers  


i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

2 Answers  


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

1 Answers   CMS,


union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }

3 Answers  


void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }

5 Answers   C DAC, CDAC, Infosys, Wipro,


Categories