write a programe returns the number of times the character
appears in the string
Answer Posted / mohanraj
if(a[i]==q)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
what is ur strangth & weekness
What is the use of header files?
What is optimization in c?
What is the difference between far and near ?
application attempts to perform an operation?
please explain every phase in the "SDLC" in the dotnet.
How do you override a defined macro?
How to compare array with pointer in c?
What is class and object in c?
What is the difference between the = symbol and == symbol?
Why dont c comments nest?
What are external variables in c?
What does void main return?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...