Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a programe returns the number of times the character
appears in the string

Answer Posted / vignesh1988i

#include<stdio.h>
#include<conio.h>
void main()
{
char a[50],q;
int count =0;
printf("enter the sring :");
gets(a);
printf("enter the char. to be searched :");
scanf("%c",&q);
for(int i=0;a[i]!='\0';i++)
{
if(a[i]==f)
count++;
}
printf("the occurance is :%d",count);
getch();
}

Is This Answer Correct ?    3 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why pointers are used in c?

1010


What is the Purpose of 'extern' keyword in a function declaration?

1084


Which is the best website to learn c programming?

1078


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

1245


What is a keyword?

1168


#include { printf("Hello"); } how compile time affects when we add additional header file .

1895


What is the purpose of clrscr () printf () and getch ()?

1073


what do you mean by inline function in C?

1058


Explain how can I manipulate strings of multibyte characters?

1206


What does c mean in standard form?

1181


Do pointers store the address of value or the actual value of a variable?

1081


What are the features of the c language?

1088


Should I learn c before c++?

1237


Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent

1826


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

2255