ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
Categories >> Software >> Programming-Languages >> C
 
 
 
Question
pgm to find number of words starting with capital letters 
in a file(additional memory usage not allowed)(if a word 
starting with capital also next letter in word is capital 
cann't be counted twice)
 Question Submitted By :: Soumyajoy
I also faced this Question!!     Rank Answer Posted By  
 
Answer
int flag=0,count=0;
FILE *in=fopen("in.txt","r");
while(!feof(in))
{
  if(  isupper( fgetc(in) ) && flag==0)
  {
        flag=1;
        count++;
  }
  else if( fgetc(in) ==' ')
        flag=0;
}
printf("Count=%d",count);

// PROGRAM VERIFIED WITH SAMPLE INPUT
 
0
Shiva
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com