this is my code https://ide.codingblocks.com/s/166680
CanYouReadTHis type conversion error
Hi @Vivek-Pandey-2129725577345937
See you have taken char s and then you are using strlen which gives error because s is not a char array. Instead your should make char s[10000]. And then you need to print all the s[i] till you encounter another upper case character.
Here is your corrected code :