C Code to print particular alphabet followed by number of times alphabet occurs in a string. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

C Code to print particular alphabet followed by number of times alphabet occurs in a string.

input- aaaaabbbbccccddd output - a5b4c4d3 https://code.sololearn.com/cpLMmuV5dFtc/?ref=app

30th Jul 2018, 9:31 AM
saquib jack
6 Answers
+ 4
saquib jack I need you to show code, to prove that you tried to do it yourself.
30th Jul 2018, 10:17 AM
Manual
Manual - avatar
+ 1
saquib jack , I just uncommented everything inside main and your another function to check whether it compiles or not... by doing same, I got stray error code which means there are some special characters in-between which compiler don't understand... I would suggest you to rewrite whole code again manually rather than copying directly into code playground to avoid special characters getting copied to code... Another point I observed is void return type for main... It is recommended to use int main and return 0 at end of function... Additionally , you are doing scanf with %s .. as you are looking for single character through particular scanf, it should be %c.. post your updated code and let us know if you still face issue in code... Another approach to count character in string is to use count method of algorithm header file...
30th Jul 2018, 12:19 PM
Ketan Lalcheta
Ketan Lalcheta - avatar
+ 1
i write the same code once again and it's working I think I m copying it that's the mistake bcz the same code is already working on my lappy .... thnks Ketan Lalcheta
30th Jul 2018, 12:43 PM
saquib jack
0
Hey saquib jack.What's the problem?
30th Jul 2018, 9:36 AM
Akib
Akib - avatar
0
no problem actually I m posting the code not only problem
30th Jul 2018, 9:37 AM
saquib jack
0
sry for late. the code is not working here but it is working in my Linux compiler. you can compile and run this code in your laptop or Pc whatever you have https://code.sololearn.com/cpLMmuV5dFtc/?ref=app
30th Jul 2018, 10:43 AM
saquib jack